summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2013-08-24 15:43:58 +0000
committer Dirk Best <mail@dirk-best.de>2013-08-24 15:43:58 +0000
commit8085624dc76c5ed9ba6769c581471bce1ff3be0e (patch)
treea1d09e491f2e6d613ce589f3ffd645053c92472c /src/tools
parent700b42c396e77b945b7d26e4d76a4b0171184feb (diff)
i8089: converted to a proper cpu core, added debugger support and disassembler
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/unidasm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/unidasm.c b/src/tools/unidasm.c
index 49380634c4c..30f65c2e2e6 100644
--- a/src/tools/unidasm.c
+++ b/src/tools/unidasm.c
@@ -131,6 +131,7 @@ CPU_DISASSEMBLE( i8008 );
CPU_DISASSEMBLE( i8051 );
CPU_DISASSEMBLE( i8052 );
CPU_DISASSEMBLE( i8085 );
+CPU_DISASSEMBLE( i8089 );
CPU_DISASSEMBLE( i80c51 );
CPU_DISASSEMBLE( i80c52 );
CPU_DISASSEMBLE( i860 );
@@ -275,6 +276,7 @@ static const dasm_table_entry dasm_table[] =
{ "i8051", _8bit, 0, CPU_DISASSEMBLE_NAME(i8051) },
{ "i8052", _8bit, 0, CPU_DISASSEMBLE_NAME(i8052) },
{ "i8085", _8bit, 0, CPU_DISASSEMBLE_NAME(i8085) },
+ { "i8089", _8bit, 0, CPU_DISASSEMBLE_NAME(i8089) },
{ "i80c51", _8bit, 0, CPU_DISASSEMBLE_NAME(i80c51) },
{ "i80c52", _8bit, 0, CPU_DISASSEMBLE_NAME(i80c52) },
{ "i860", _64le, 0, CPU_DISASSEMBLE_NAME(i860) },