From fb0939f9b68d7fb83d863b22ef99af93452bb4bf Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sat, 29 Feb 2020 17:51:55 -0300 Subject: Add SSAT, SSAT16, USAT and USAT16 ARM32 instructions (#954) * Implement SMULWB, SMULWT, SMLAWB, SMLAWT, and add tests for some multiply instructions * Improve test descriptions * Rename SMULH to SMUL__ * Add SSAT, SSAT16, USAT and USAT16 ARM32 instructions * Fix new tests * Replace AND 0xFFFF with 16-bits zero extension (more efficient) --- ARMeilleure/State/PState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ARMeilleure/State') diff --git a/ARMeilleure/State/PState.cs b/ARMeilleure/State/PState.cs index ce755e95..8dbd84df 100644 --- a/ARMeilleure/State/PState.cs +++ b/ARMeilleure/State/PState.cs @@ -7,7 +7,7 @@ namespace ARMeilleure.State { TFlag = 5, EFlag = 9, - + QFlag = 27, VFlag = 28, CFlag = 29, ZFlag = 30, -- cgit v1.2.3