diff options
author | 2020-07-27 14:39:43 +0200 | |
---|---|---|
committer | 2020-07-27 14:39:57 +0200 | |
commit | 4da115a715324da19ae72a8f4b560ca9fa58e4e8 (patch) | |
tree | 5fd3cd1cef0534b5696df8802d41a08937d098ee /src/devices/cpu/z80/z80.cpp | |
parent | d6ea641f828b9216f91b3528f9e4c3af79c47f88 (diff) |
cp2000: put sboard interface on left side like everywhere else
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--; |