diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-04-28 15:18:28 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-04-28 15:18:28 +0200 |
| commit | e70a9ba4856b4faeb9a307892be69eac5709b11f (patch) | |
| tree | f320423c120361dcc769804cdfdd32939eb8ff54 /src/include | |
| parent | 61a759f802e74b9f97015d93dcaee408a532a02e (diff) | |
| download | box64-e70a9ba4856b4faeb9a307892be69eac5709b11f.tar.gz box64-e70a9ba4856b4faeb9a307892be69eac5709b11f.zip | |
Added some comment to x87 sw flags
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/regs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/regs.h b/src/include/regs.h index 721f155a..99ddba0c 100644 --- a/src/include/regs.h +++ b/src/include/regs.h @@ -233,12 +233,12 @@ typedef union { uint16_t F87_PE:1; uint16_t F87_SF:1; uint16_t F87_ES:1; - uint16_t F87_C0:1; - uint16_t F87_C1:1; - uint16_t F87_C2:1; - uint16_t F87_TOP:3; - uint16_t F87_C3:1; - uint16_t F87_B:1; + uint16_t F87_C0:1; // bit 8 + uint16_t F87_C1:1; // bit 9 + uint16_t F87_C2:1; // bit 10 + uint16_t F87_TOP:3; // bits 11-13 + uint16_t F87_C3:1; // bit 14 + uint16_t F87_B:1; // bit 15 } f; uint16_t x16; } x87flags_t; |