From b553c3f3ac7fe752dca6c27be72bec5969a1c955 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 16 Mar 2021 20:32:37 +0100 Subject: [DYNAREC] Added 70..7F opcodes (and fixed ORR/AND bitmask coding/decoding, that's some convoluted encoding here) --- src/include/regs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/regs.h b/src/include/regs.h index aee12996..3e9efb0a 100755 --- a/src/include/regs.h +++ b/src/include/regs.h @@ -179,8 +179,9 @@ typedef union { unsigned int _F_VIF:1; unsigned int _F_VIP:1; unsigned int _F_ID:1; + unsigned int _F_fill1:10; + uint32_t _F_fill2; } f; - uint32_t x32; uint64_t x64; } x64flags_t; -- cgit 1.4.1