diff options
Diffstat (limited to 'src/devices/cpu/z80/z80.cpp')
-rw-r--r-- | src/devices/cpu/z80/z80.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/z80/z80.cpp b/src/devices/cpu/z80/z80.cpp index da54afba683..e3575a90af7 100644 --- a/src/devices/cpu/z80/z80.cpp +++ b/src/devices/cpu/z80/z80.cpp @@ -3518,7 +3518,7 @@ void z80_device::execute_run() m_r++; uint8_t opcode = rop(); - // when in HALT state, the fetched opcode is not executed (aka a NOP) + // when in HALT state, the fetched opcode is not dispatched (aka a NOP) if (m_halt) { PC--; |