diff options
author | 2020-04-04 17:21:59 -0400 | |
---|---|---|
committer | 2020-04-04 17:21:59 -0400 | |
commit | 9abc6733ba12420392bf6bca2540c00ea5ea77e4 (patch) | |
tree | 0b2182becd0e84de6ca15b1bca83913e081e07ea /scripts/src/cpu.lua | |
parent | 7339d77c024e461518ecaa69440e347d3e74e739 (diff) |
Add H8/500 disassembler and skeleton CPU device family
alesis_qs.cpp: Document XTALs; replace legacy MCFG in comments (nw)
picno.cpp: Replace legacy MCFG in comments (nw)
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index ebb52316eaa..95d65cd8f70 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -684,6 +684,31 @@ if (CPUS["H8"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- +-- Hitachi H8/500 series +--@src/devices/cpu/h8500/h8500.h,CPUS["H8500"] = true +-------------------------------------------------- + +if (CPUS["H8500"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/h8500/h8500.cpp", + MAME_DIR .. "src/devices/cpu/h8500/h8500.h", + MAME_DIR .. "src/devices/cpu/h8500/h8510.cpp", + MAME_DIR .. "src/devices/cpu/h8500/h8510.h", + MAME_DIR .. "src/devices/cpu/h8500/h8520.cpp", + MAME_DIR .. "src/devices/cpu/h8500/h8520.h", + MAME_DIR .. "src/devices/cpu/h8500/h8532.cpp", + MAME_DIR .. "src/devices/cpu/h8500/h8532.h", + MAME_DIR .. "src/devices/cpu/h8500/h8534.cpp", + MAME_DIR .. "src/devices/cpu/h8500/h8534.h", + } +end + +if (CPUS["H8500"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/h8500/h8500dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/h8500/h8500dasm.h") +end + +-------------------------------------------------- -- Hitachi HCD62121 --@src/devices/cpu/hcd62121/hcd62121.h,CPUS["HCD62121"] = true -------------------------------------------------- |