diff options
author | 2017-01-30 22:51:11 +1100 | |
---|---|---|
committer | 2017-01-30 23:10:51 +1100 | |
commit | 06e22ce79d2bc41ac333ed5cf59ee1c2db5cfd6e (patch) | |
tree | 17b6a1dfca9f2ac2e4bcc330acfc408c3a44f8da /scripts/src/cpu.lua | |
parent | 0995b978acbbc3a892595ac110f1d930684a1d52 (diff) |
m6805: added skeleton CMOS devices
* Added m146805 and m68hc05 to unidasm
* Made opcode tables configurable in m6805_base_device, provided tables for HMOS, CMOS and HC families
* Implemented MUL instruction, made unimplemented STOP and WAIT raise fatal error
* Added skeleton MC68HC05C4 with RAM and ROM in correct locations in memory map
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 72a7ffea3fa..477dac60840 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -1339,6 +1339,8 @@ if (CPUS["M6805"]~=null) then MAME_DIR .. "src/devices/cpu/m6805/6805ops.hxx", MAME_DIR .. "src/devices/cpu/m6805/m68705.cpp", MAME_DIR .. "src/devices/cpu/m6805/m68705.h", + MAME_DIR .. "src/devices/cpu/m6805/m68hc05.cpp", + MAME_DIR .. "src/devices/cpu/m6805/m68hc05.h", } end @@ -2430,4 +2432,4 @@ end if (CPUS["CLIPPER"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/clipper/clipperd.cpp") -end
\ No newline at end of file +end |