summaryrefslogtreecommitdiffstats
path: root/src/core/arm/skyeye_common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-12-27 23:06:19 +0100
committerLioncash <mathew1800@gmail.com>2014-12-27 23:06:19 +0100
commit60523113a9301e16bae91af61063bd8833926e8c (patch)
tree772fa7009ce417b0388fa8f1e8fbf9bab0bfc631 /src/core/arm/skyeye_common
parentMerge pull request #349 from lioncash/uhdync (diff)
downloadyuzu-60523113a9301e16bae91af61063bd8833926e8c.tar
yuzu-60523113a9301e16bae91af61063bd8833926e8c.tar.gz
yuzu-60523113a9301e16bae91af61063bd8833926e8c.tar.bz2
yuzu-60523113a9301e16bae91af61063bd8833926e8c.tar.lz
yuzu-60523113a9301e16bae91af61063bd8833926e8c.tar.xz
yuzu-60523113a9301e16bae91af61063bd8833926e8c.tar.zst
yuzu-60523113a9301e16bae91af61063bd8833926e8c.zip
Diffstat (limited to 'src/core/arm/skyeye_common')
-rw-r--r--src/core/arm/skyeye_common/armemu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/arm/skyeye_common/armemu.h b/src/core/arm/skyeye_common/armemu.h
index 3ea14b5a3..0b87dd39c 100644
--- a/src/core/arm/skyeye_common/armemu.h
+++ b/src/core/arm/skyeye_common/armemu.h
@@ -603,6 +603,10 @@ extern void ARMul_MSRCpsr (ARMul_State *, ARMword, ARMword);
extern void ARMul_SubOverflow (ARMul_State *, ARMword, ARMword, ARMword);
extern void ARMul_AddOverflow (ARMul_State *, ARMword, ARMword, ARMword);
extern void ARMul_AddOverflowQ(ARMul_State*, ARMword, ARMword);
+extern u8 ARMul_UnsignedSaturatedAdd8(u8, u8);
+extern u16 ARMul_UnsignedSaturatedAdd16(u16, u16);
+extern u8 ARMul_UnsignedSaturatedSub8(u8, u8);
+extern u16 ARMul_UnsignedSaturatedSub16(u16, u16);
extern void ARMul_SubCarry (ARMul_State *, ARMword, ARMword, ARMword);
extern void ARMul_AddCarry (ARMul_State *, ARMword, ARMword, ARMword);
extern tdstate ARMul_ThumbDecode (ARMul_State *, ARMword, ARMword, ARMword *);