about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-20 10:20:51 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-20 10:20:51 +0100
commita68be9117b1d8cc78e9e6ceea5f8236f074983c9 (patch)
tree551bf8753513ced2f153ed5de0e143eaef38d63b /src/include
parentf4fceb53bc3def59d34baec0453d313382c2a58d (diff)
downloadbox64-a68be9117b1d8cc78e9e6ceea5f8236f074983c9.tar.gz
box64-a68be9117b1d8cc78e9e6ceea5f8236f074983c9.zip
[DYNAREC] Added D3 opcodes, and fixed sl32/shl32c/shr32/shr32c emitter
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/regs.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/regs.h b/src/include/regs.h
index 008b61bc..44cc21b8 100755
--- a/src/include/regs.h
+++ b/src/include/regs.h
@@ -159,18 +159,18 @@ typedef struct {
 
 typedef union {
     struct __attribute__ ((__packed__)) {
-        unsigned int _F_CF:1;
+        unsigned int _F_CF:1;		//0x0001
 		unsigned int _F_res1:1;
-        unsigned int _F_PF:1;
+        unsigned int _F_PF:1;		//0x0004
 		unsigned int _F_res2:1;
-        unsigned int _F_AF:1;
+        unsigned int _F_AF:1;		//0x0010
 		unsigned int _F_res3:1;
-        unsigned int _F_ZF:1;
-        unsigned int _F_SF:1;
-        unsigned int _F_TF:1;
-        unsigned int _F_IF:1;
-        unsigned int _F_DF:1;
-        unsigned int _F_OF:1;
+        unsigned int _F_ZF:1;		//0x0040
+        unsigned int _F_SF:1;		//0x0080
+        unsigned int _F_TF:1;		//0x0100
+        unsigned int _F_IF:1;		//0x0200
+        unsigned int _F_DF:1;		//0x0400
+        unsigned int _F_OF:1;		//0x0800
         unsigned int _F_IOPL:2;
         unsigned int _F_NT:1;
         unsigned int _F_dummy:1;