summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i386/i386op32.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i386/i386op32.hxx')
-rw-r--r--src/devices/cpu/i386/i386op32.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i386/i386op32.hxx b/src/devices/cpu/i386/i386op32.hxx
index 010cf91be58..0d5db177169 100644
--- a/src/devices/cpu/i386/i386op32.hxx
+++ b/src/devices/cpu/i386/i386op32.hxx
@@ -1524,9 +1524,9 @@ void i386_device::i386_pop_rm32() // Opcode 0x8f
if( modrm >= 0xc0 ) {
STORE_RM32(modrm, value);
} else {
- ea = GetEA(modrm,1);
try
{
+ ea = GetEA(modrm,1);
WRITE32(ea, value);
}
catch(uint64_t e)