summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/pdp8/pdp8dasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/pdp8/pdp8dasm.cpp')
-rw-r--r--src/devices/cpu/pdp8/pdp8dasm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/pdp8/pdp8dasm.cpp b/src/devices/cpu/pdp8/pdp8dasm.cpp
index 3fdbc139249..dca8fadf4e2 100644
--- a/src/devices/cpu/pdp8/pdp8dasm.cpp
+++ b/src/devices/cpu/pdp8/pdp8dasm.cpp
@@ -638,10 +638,10 @@ void pdp8_disassembler::dasm_opr_group2(std::ostream &stream, u16 opr)
{
if (BIT(opr, 7))
stream << "CLA";
- else if (opr == 07400)
+ else if (opr == 0400)
stream << "NOP";
- if ((opr & 0176) == 0)
- stream << "!200";
+ if ((opr & 0170) == 0)
+ stream << "!400";
}
}