diff options
| author | 2024-03-23 02:27:21 +0100 | |
|---|---|---|
| committer | 2024-03-23 02:27:21 +0100 | |
| commit | b8d8e7a0527afabd6abc3eb48dba6ba6efdb1bf6 (patch) | |
| tree | dc69880da847cf745c677d0778b4e1129947b73a /src/devices/cpu/i386/i386op16.hxx | |
| parent | f338e1590e0e7452da5d01cc30f125530c074bea (diff) | |
cpu/i386: saner fatal error handlingx86_std-exceptions
Diffstat (limited to 'src/devices/cpu/i386/i386op16.hxx')
| -rw-r--r-- | src/devices/cpu/i386/i386op16.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i386/i386op16.hxx b/src/devices/cpu/i386/i386op16.hxx index 4950a7ed73e..036a235f0d6 100644 --- a/src/devices/cpu/i386/i386op16.hxx +++ b/src/devices/cpu/i386/i386op16.hxx @@ -1690,7 +1690,7 @@ void i386_device::i386_pop_rm16() // Opcode 0x8f catch(uint64_t e) { REG32(ESP) = temp_sp; - throw e; + throw emu_fatalerror("i386_pop_rm16: %llx", e); } } } |
