From 5e59acc819d032f22c5fb68b430adfe0ad392fa7 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 9 Feb 2021 17:09:26 -0500 Subject: f8: Use CLR instead of LIS H'00' as disassembly of opcode 0x70 --- src/devices/cpu/f8/f8dasm.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/cpu/f8/f8dasm.cpp b/src/devices/cpu/f8/f8dasm.cpp index e35a7d42f70..7f45a4094f8 100644 --- a/src/devices/cpu/f8/f8dasm.cpp +++ b/src/devices/cpu/f8/f8dasm.cpp @@ -254,6 +254,8 @@ offs_t f8_disassembler::disassemble(std::ostream &stream, offs_t pc, const data_ break; case 0x70: /* 0111 0000 */ + util::stream_format(stream, "CLR"); + break; case 0x71: /* 0111 0001 */ case 0x72: /* 0111 0010 */ case 0x73: /* 0111 0011 */ -- cgit v1.2.3