diff options
author | 2024-03-27 15:21:12 +0700 | |
---|---|---|
committer | 2024-03-27 15:21:12 +0700 | |
commit | b19122db32376f6b93e5d7ee5e42a1f542193d95 (patch) | |
tree | d8441dbc916438cb7cacf7229d1ef3e24af20ebf /src/tools/unidasm.cpp | |
parent | e3ed66ec77e33e28f1ae51e406d6dbe683f5dbf2 (diff) |
palm: new cpu device and disassembler
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 cd68c78adee..a8fd8a97649 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -135,6 +135,7 @@ using util::BIT; #include "cpu/ns32000/ns32000d.h" #include "cpu/nuon/nuondasm.h" #include "cpu/pace/pacedasm.h" +#include "cpu/palm/palmd.h" #include "cpu/patinhofeio/patinho_feio_dasm.h" #include "cpu/pdp1/pdp1dasm.h" #include "cpu/pdp8/pdp8dasm.h" @@ -566,6 +567,7 @@ static const dasm_table_entry dasm_table[] = { "p8xc552", le, 0, []() -> util::disasm_interface * { return new p8xc552_disassembler; } }, { "p8xc562", le, 0, []() -> util::disasm_interface * { return new p8xc562_disassembler; } }, { "pace", le, -1, []() -> util::disasm_interface * { return new pace_disassembler; } }, + { "palm", be, 0, []() -> util::disasm_interface * { return new palm_disassembler; } }, { "patinho_feio", le, 0, []() -> util::disasm_interface * { return new patinho_feio_disassembler; } }, { "pdp1", be, -2, []() -> util::disasm_interface * { return new pdp1_disassembler; } }, { "pdp8", be, -1, []() -> util::disasm_interface * { return new pdp8_disassembler; } }, |