dyncom: Add a helper function for addition with a carry

This commit is contained in:
Lioncash 2015-01-12 00:01:46 -05:00
parent eacc2a501b
commit 9c2c89b7e1
3 changed files with 26 additions and 12 deletions

View file

@ -795,6 +795,7 @@ extern void ARMul_FixSPSR(ARMul_State*, ARMword, ARMword);
extern void ARMul_ConsolePrint(ARMul_State*, const char*, ...);
extern void ARMul_SelectProcessor(ARMul_State*, unsigned);
extern u32 AddWithCarry(u32, u32, u32, bool*, bool*);
extern bool ARMul_AddOverflowQ(ARMword, ARMword);
extern u8 ARMul_SignedSaturatedAdd8(u8, u8);