about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-16 20:32:37 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-16 20:32:37 +0100
commitb553c3f3ac7fe752dca6c27be72bec5969a1c955 (patch)
treeaaff157a1de3962b8190609c49ba70f3a1edde73 /src/include
parent551542f99a2bcd690f19e1bb17ac16172feef583 (diff)
downloadbox64-b553c3f3ac7fe752dca6c27be72bec5969a1c955.tar.gz
box64-b553c3f3ac7fe752dca6c27be72bec5969a1c955.zip
[DYNAREC] Added 70..7F opcodes (and fixed ORR/AND bitmask coding/decoding, that's some convoluted encoding here)
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/regs.h3
1 files changed, 2 insertions, 1 deletions
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;