diff options
author | 2020-04-05 17:11:45 -0500 | |
---|---|---|
committer | 2020-04-05 17:11:45 -0500 | |
commit | 192988f210eb143d7eb1c4722009c879e9ad06a7 (patch) | |
tree | 514e3ad36efc768e5b36ff246240b50d895c73c9 /src/devices/machine/i8087.cpp | |
parent | 58b4fa0fb912042a770d7ca30aeeb39d87c85d51 (diff) |
i386/i8087: add alias for fstp st(i)
Diffstat (limited to 'src/devices/machine/i8087.cpp')
-rw-r--r-- | src/devices/machine/i8087.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/i8087.cpp b/src/devices/machine/i8087.cpp index aae326006bb..82fd0348514 100644 --- a/src/devices/machine/i8087.cpp +++ b/src/devices/machine/i8087.cpp @@ -4474,6 +4474,7 @@ void i8087_device::build_opcode_table_d9() case 0xcf: ptr = &i8087_device::fxch_sti; break; case 0xd0: ptr = &i8087_device::fnop; break; + case 0xd8: case 0xd9: case 0xda: case 0xdb: case 0xdc: case 0xdd: case 0xde: case 0xdf: ptr = &i8087_device::fstp_sti; break; case 0xe0: ptr = &i8087_device::fchs; break; case 0xe1: ptr = &i8087_device::fabs; break; case 0xe4: ptr = &i8087_device::ftst; break; |