diff options
author | 2021-10-27 04:21:46 -0400 | |
---|---|---|
committer | 2021-10-27 10:21:46 +0200 | |
commit | 935d28a67573f4cd1333639927f19798ce953f1e (patch) | |
tree | 6fccc4072e472f8caf6d062779d417b5eb820da1 /src/tools/unidasm.cpp | |
parent | 163659b50aabc57aaeeb55e35e88d85523cdbc4c (diff) |
new NOT_WORKING machine (Casio CTK-2100) (#8757)
* ctk2100: preliminary work
* ctk2100: possible keyboard hookup
* ctk2100: hook up rudimentary timers
* ctk2100: add ports and hook up the LCD
* ctk2100: timer tweaks, input tweaks
* ctk2100: fix I/O port reads (stops constant LCD resets)
* gt913: increase key polling rate (fixes ctk2100 test mode)
* ctk2100: add ADCs, clean up and comment some other stuff
* lpc210x: add the PL190 VIC here too while i'm at it
* vic_pl192: fix clang build
* unidasm: add gt913
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r-- | src/tools/unidasm.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp index 4108b35ef42..64610c3ba21 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -56,6 +56,7 @@ using util::BIT; #include "cpu/g65816/g65816ds.h" #include "cpu/gigatron/gigatrondasm.h" #include "cpu/h6280/6280dasm.h" +#include "cpu/h8/gt913d.h" #include "cpu/h8/h8d.h" #include "cpu/h8/h8hd.h" #include "cpu/h8/h8s2000d.h" @@ -423,6 +424,7 @@ static const dasm_table_entry dasm_table[] = { "fr", be, 0, []() -> util::disasm_interface * { return new fr_disassembler; } }, { "g65816", le, 0, []() -> util::disasm_interface * { return new g65816_disassembler(&g65816_unidasm); } }, { "gigatron", be, -1, []() -> util::disasm_interface * { return new gigatron_disassembler; } }, + { "gt913", be, 0, []() -> util::disasm_interface * { return new gt913_disassembler; } }, { "h6280", le, 0, []() -> util::disasm_interface * { return new h6280_disassembler; } }, { "h8", be, 0, []() -> util::disasm_interface * { return new h8_disassembler; } }, { "h8h", be, 0, []() -> util::disasm_interface * { return new h8h_disassembler; } }, |