diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-20 10:20:51 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-20 10:20:51 +0100 |
| commit | a68be9117b1d8cc78e9e6ceea5f8236f074983c9 (patch) | |
| tree | 551bf8753513ced2f153ed5de0e143eaef38d63b /src/include | |
| parent | f4fceb53bc3def59d34baec0453d313382c2a58d (diff) | |
| download | box64-a68be9117b1d8cc78e9e6ceea5f8236f074983c9.tar.gz box64-a68be9117b1d8cc78e9e6ceea5f8236f074983c9.zip | |
[DYNAREC] Added D3 opcodes, and fixed sl32/shl32c/shr32/shr32c emitter
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/regs.h | 18 |
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; |