summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/unidasm.cpp
diff options
context:
space:
mode:
author Vas Crabb <cuavas@users.noreply.github.com>2016-11-17 02:27:29 +1100
committer GitHub <noreply@github.com>2016-11-17 02:27:29 +1100
commite61b392edfbfe5b9d70908c087632da915a3abd8 (patch)
tree943f310cb94b1c56a80c87b4bdce3cdd8a078a1f /src/tools/unidasm.cpp
parentc257afc1262c7c8a5dbda2f9e600ec647a39a5a6 (diff)
parentea9f91ed1e368d694abcf49b9c362ecd30cd4680 (diff)
Merge pull request #1657 from npwoods/dasmstream_arcompact
Changed the arcompact disassembler to use 'std::ostream &' internally
Diffstat (limited to 'src/tools/unidasm.cpp')
-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 19a1fa116c4..b47767dceea 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) },