From 598f1ae2cf1df602b489e0d8e0e8d03f19299acc Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 19 Jun 2024 21:18:41 -0400 Subject: nx8dasm: Fix special PUSH/POP operand mnemonics --- src/devices/cpu/olms66k/nx8dasm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/olms66k/nx8dasm.cpp b/src/devices/cpu/olms66k/nx8dasm.cpp index f364d76ddf0..33456aaeb99 100644 --- a/src/devices/cpu/olms66k/nx8dasm.cpp +++ b/src/devices/cpu/olms66k/nx8dasm.cpp @@ -566,11 +566,11 @@ offs_t nx8_500s_disassembler::disassemble(std::ostream &stream, offs_t pc, const break; case 0x1f: - stream << "CR"; + stream << "PR"; break; case 0x2e: - stream << "PR"; + stream << "CR"; break; default: -- cgit v1.2.3