diff options
author | 2020-06-28 20:03:13 -0400 | |
---|---|---|
committer | 2020-06-28 20:03:13 -0400 | |
commit | 040c88bf1d206cbbc47129e3e99d34ffbe4436da (patch) | |
tree | 45f94f8cddfaed8e3c78764fedd995b60024ce5f /scripts/src | |
parent | 606ef88f02c7218f1ea8c99ed83316dc7dad9c7c (diff) |
New machines marked as NOT_WORKING
----------------------------------
Korg WaveStation EX [DBWBP]
Korg WaveStation A/D [DBWBP]
Korg WaveStation SR [DBWBP]
-Add H16 disassembler and skeleton HD641016 CPU device [AJR]
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/cpu.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 0dcc83b6855..54c0bc7576a 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -593,6 +593,23 @@ if (CPUS["G65816"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- +-- Hitachi H16 +--@src/devices/cpu/h16/hd641016.h,CPUS["H16"] = true +-------------------------------------------------- + +if (CPUS["H16"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/h16/hd641016.cpp", + MAME_DIR .. "src/devices/cpu/h16/hd641016.h", + } +end + +if (CPUS["H16"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/h16/h16dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/h16/h16dasm.h") +end + +-------------------------------------------------- -- Hitachi H8 (16/32-bit H8/300, H8/300H, H8S2000 and H8S2600 series) --@src/devices/cpu/h8/h8.h,CPUS["H8"] = true -------------------------------------------------- |