diff options
author | 2023-12-26 19:01:41 +0000 | |
---|---|---|
committer | 2023-12-26 20:01:41 +0100 | |
commit | 6222175a2244c9b53451b6e8046d30f3ea795769 (patch) | |
tree | 09c5ed2ffc5278996df95520aeae01f25736ef07 /src/tools/unidasm.cpp | |
parent | 70ebbc384b4fddaf24512b18a430dfb0090db169 (diff) |
Holtek HT1130 CPU core, and preliminary driver for a brick game using it (#11872)
new machines marked as NOT WORKING
--------------------------
Brick Game 96 in 1 (E-23 Plus Mark II) [azya52, David Haywood]
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 5a2efb167a2..d84393be307 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -70,6 +70,7 @@ using util::BIT; #include "cpu/hp2100/hp2100d.h" #include "cpu/hpc/hpcdasm.h" #include "cpu/hphybrid/hphybrid_dasm.h" +#include "cpu/ht1130/ht1130d.h" #include "cpu/i386/i386dasm.h" #include "cpu/i8008/8008dasm.h" #include "cpu/i8085/8085dasm.h" @@ -475,6 +476,7 @@ static const dasm_table_entry dasm_table[] = { "hpc16083", le, 0, []() -> util::disasm_interface * { return new hpc16083_disassembler; } }, { "hpc16164", le, 0, []() -> util::disasm_interface * { return new hpc16164_disassembler; } }, { "hyperstone", be, 0, []() -> util::disasm_interface * { return new hyperstone_disassembler(&hyperstone_unidasm); } }, + { "ht1130", le, 0, []() -> util::disasm_interface * { return new ht1130_disassembler; } }, { "i4004", le, 0, []() -> util::disasm_interface * { return new i4004_disassembler; } }, { "i4040", le, 0, []() -> util::disasm_interface * { return new i4040_disassembler; } }, { "i8008", le, 0, []() -> util::disasm_interface * { return new i8008_disassembler; } }, |