diff options
author | 2016-11-05 14:22:46 -0400 | |
---|---|---|
committer | 2016-11-05 14:22:46 -0400 | |
commit | f05e7ffad0fce71293f65d142b7c13084ad48215 (patch) | |
tree | 197bc76b15349e8cc3d3be04e6f070ad4aa7a639 /src/tools/unidasm.cpp | |
parent | aff3588a0458ec6d538375f5a235c82a934020ad (diff) | |
parent | f60621bbd443493b0e24aad355482ec77f781a9c (diff) |
Merge pull request #1637 from fulivi/hp9845_dev7
Hp9845: re-implemented 98035 module with a nanoprocessor driver
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 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) }, |