summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-02-09 17:09:26 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-02-09 17:09:28 -0500
commit5e59acc819d032f22c5fb68b430adfe0ad392fa7 (patch)
treea267411d10f73f7c356b3629d6c907284ba446da
parent3c7353b90b6f0d61c56efa8ecaa384606c7b900f (diff)
f8: Use CLR instead of LIS H'00' as disassembly of opcode 0x70
-rw-r--r--src/devices/cpu/f8/f8dasm.cpp2
1 files changed, 2 insertions, 0 deletions
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 */