diff options
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r-- | src/tools/unidasm.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp index 59cce01ad29..e70f1fc13ac 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -110,6 +110,7 @@ CPU_DISASSEMBLE( i960 ); CPU_DISASSEMBLE( ie15 ); CPU_DISASSEMBLE( jaguardsp ); CPU_DISASSEMBLE( jaguargpu ); +CPU_DISASSEMBLE( kb1013vk12 ); CPU_DISASSEMBLE( konami ); CPU_DISASSEMBLE( lh5801 ); CPU_DISASSEMBLE( lr35902 ); @@ -158,7 +159,9 @@ CPU_DISASSEMBLE( sh2 ); CPU_DISASSEMBLE( sh4 ); CPU_DISASSEMBLE( sh4be ); CPU_DISASSEMBLE( sharc ); +CPU_DISASSEMBLE( sm500 ); CPU_DISASSEMBLE( sm510 ); +CPU_DISASSEMBLE( sm511 ); CPU_DISASSEMBLE( sm8500 ); CPU_DISASSEMBLE( spc700 ); CPU_DISASSEMBLE( ssem ); @@ -264,6 +267,7 @@ static const dasm_table_entry dasm_table[] = { "ie15", _8bit, 0, CPU_DISASSEMBLE_NAME(ie15) }, { "jaguardsp", _16be, 0, CPU_DISASSEMBLE_NAME(jaguardsp) }, { "jaguargpu", _16be, 0, CPU_DISASSEMBLE_NAME(jaguargpu) }, + { "kb1013vk12", _8bit, 0, CPU_DISASSEMBLE_NAME(kb1013vk12) }, { "konami", _8bit, 0, CPU_DISASSEMBLE_NAME(konami) }, { "lh5801", _8bit, 0, CPU_DISASSEMBLE_NAME(lh5801) }, { "lr35902", _8bit, 0, CPU_DISASSEMBLE_NAME(lr35902) }, @@ -311,7 +315,9 @@ static const dasm_table_entry dasm_table[] = { "sh4", _16le, 0, CPU_DISASSEMBLE_NAME(sh4) }, { "sh4be", _16be, 0, CPU_DISASSEMBLE_NAME(sh4be) }, { "sharc", _48le, -2, CPU_DISASSEMBLE_NAME(sharc) }, + { "sm500", _8bit, 0, CPU_DISASSEMBLE_NAME(sm500) }, { "sm510", _8bit, 0, CPU_DISASSEMBLE_NAME(sm510) }, + { "sm511", _8bit, 0, CPU_DISASSEMBLE_NAME(sm511) }, { "sm8500", _8bit, 0, CPU_DISASSEMBLE_NAME(sm8500) }, { "spc700", _8bit, 0, CPU_DISASSEMBLE_NAME(spc700) }, { "ssem", _32le, 0, CPU_DISASSEMBLE_NAME(ssem) }, |