diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-09-19 14:20:21 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-09-19 14:20:21 +0200 |
| commit | c10b673fef6ba42aa9f4bceaca96991a9de603b4 (patch) | |
| tree | 943fb56c92f4a8f85d531c5699dd806b311834e5 /src | |
| parent | bfd9f79267156c71e2451b847a89479941a98d3b (diff) | |
| download | box64-c10b673fef6ba42aa9f4bceaca96991a9de603b4.tar.gz box64-c10b673fef6ba42aa9f4bceaca96991a9de603b4.zip | |
Fixed a comment on x87 tags
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x87emu_private.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x87emu_private.c b/src/emu/x87emu_private.c index 02b0b6d6..a463bc01 100644 --- a/src/emu/x87emu_private.c +++ b/src/emu/x87emu_private.c @@ -264,7 +264,7 @@ void fpu_loadenv(x64emu_t* emu, char* p, int b16) emu->cw.x16 = *p32++; emu->sw.x16 = *p32++; // tagword: 2bits*8 - // tags... (only full = 0b11 / free = 0b00) + // tags... (only free = 0b11 / full = 0b00) emu->fpu_tags = *(p32++); // intruction pointer: 16bits // data (operand) pointer: 16bits |