summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author fulivi <fulivi@users.noreply.github.com>2016-10-27 12:02:40 +0200
committer fulivi <fulivi@users.noreply.github.com>2016-11-03 14:52:41 +0100
commit5f54097e533a6acaa36147511604d01bd7835d87 (patch)
treec444e1c4b2627e7e9d26c0ce3f7206e63328efa9 /src/tools
parent07588d32057e517197af069251c33f0bcb9ddb58 (diff)
nanoprocessor: initial support. Disassembler only is known to work at this point.
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 98d6a4f2c91..f72a5734f23 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -104,6 +104,7 @@ CPU_DISASSEMBLE( hd63701 );
CPU_DISASSEMBLE( hmcs40 );
CPU_DISASSEMBLE( hp_hybrid );
CPU_DISASSEMBLE( hp_5061_3001 );
+CPU_DISASSEMBLE( hp_nanoprocessor );
CPU_DISASSEMBLE( hyperstone_generic );
CPU_DISASSEMBLE( i4004 );
CPU_DISASSEMBLE( i8008 );
@@ -313,6 +314,7 @@ static const dasm_table_entry dasm_table[] =
{ "mips3be", _32be, 0, CPU_DISASSEMBLE_NAME(mips3be) },
{ "mips3le", _32le, 0, CPU_DISASSEMBLE_NAME(mips3le) },
{ "mn10200", _16le, 0, CPU_DISASSEMBLE_NAME(mn10200) },
+ { "nanoprocessor",_8bit, 0, CPU_DISASSEMBLE_NAME(hp_nanoprocessor) },
{ "nec", _8bit, 0, CPU_DISASSEMBLE_NAME(nec) },
{ "nsc8105", _8bit, 0, CPU_DISASSEMBLE_NAME(nsc8105) },
{ "pdp1", _32be, 0, CPU_DISASSEMBLE_NAME(pdp1) },