diff options
author | 2024-09-19 21:23:11 -0400 | |
---|---|---|
committer | 2024-09-19 21:23:11 -0400 | |
commit | d8761b090c01d96c2ce76c47a962286d78d330a8 (patch) | |
tree | ad07cb3c97a15d61d36b0486a2e0d228eda1a36b /scripts | |
parent | d49d4e00c22b5be6d0a260a4532dc85b7562d9ab (diff) |
ussr/pk32.cpp: Electronika PK-32 - not working (#12732)
mpl1839/kl1839vm1.cpp: MPL's l1839vm1 cpu device
Diffstat (limited to 'scripts')
-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 7cf38b73f47..8fee66cc946 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -1414,6 +1414,23 @@ if opt_tool(CPUS, "DIABLO") then end -------------------------------------------------- +-- KL1839VM1 +--@src/devices/cpu/mpk1839/kl1839vm1.h,CPUS["KL1839VM1"] = true +-------------------------------------------------- + +if CPUS["KL1839VM1"] then + files { + MAME_DIR .. "src/devices/cpu/mpk1839/kl1839vm1.cpp", + MAME_DIR .. "src/devices/cpu/mpk1839/kl1839vm1.h", + } +end + +if opt_tool(CPUS, "KL1839VM1") then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/mpk1839/kl1839vm1dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/mpk1839/kl1839vm1dasm.h") +end + +-------------------------------------------------- -- Fujitsu MB88xx --@src/devices/cpu/mb88xx/mb88xx.h,CPUS["MB88XX"] = true -------------------------------------------------- |