summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-11-11 10:43:30 -0500
committer Nathan Woods <npwoods@mess.org>2016-11-11 10:43:30 -0500
commit4920af3c2188bc562574bb9e2cd911419787335a (patch)
treec3b8f5ed17b49da3c1ccd6c5504321f4c07c0159 /src/tools
parenta9d260cf145b5f0912d6b489a8b1605d45b59d63 (diff)
Changed the arcompact disassembler to use 'std::ostream &' internally
Also added arcompact to unidasm
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/unidasm.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index f72a5734f23..d33bfa799b3 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -67,6 +67,7 @@ CPU_DISASSEMBLE( alpha8201 );
CPU_DISASSEMBLE( am29000 );
CPU_DISASSEMBLE( amis2000 );
CPU_DISASSEMBLE( apexc );
+CPU_DISASSEMBLE( arcompact );
CPU_DISASSEMBLE( arm );
CPU_DISASSEMBLE( arm_be );
CPU_DISASSEMBLE( arm7arm );
@@ -233,6 +234,7 @@ static const dasm_table_entry dasm_table[] =
{ "am29000", _32be, 0, CPU_DISASSEMBLE_NAME(am29000) },
{ "amis2000", _8bit, 0, CPU_DISASSEMBLE_NAME(amis2000) },
{ "apexc", _32be, 0, CPU_DISASSEMBLE_NAME(apexc) },
+ { "arcompact", _16le, 0, CPU_DISASSEMBLE_NAME(arcompact) },
{ "arm", _32le, 0, CPU_DISASSEMBLE_NAME(arm) },
{ "arm_be", _32be, 0, CPU_DISASSEMBLE_NAME(arm_be) },
{ "arm7", _32le, 0, CPU_DISASSEMBLE_NAME(arm7arm) },