diff options
author | 2019-05-01 00:04:54 +0100 | |
---|---|---|
committer | 2019-04-30 19:04:53 -0400 | |
commit | f8656d9246057c3d266f1a898169e9cd700f4746 (patch) | |
tree | 0b64e0af5bcea886251e2c87678a696a5a359d0e /scripts/src | |
parent | dcfacd8df665ced82c57f7ac83a4e0fe54752c8b (diff) |
TV Game Work (progress towards smartfp and wrlshunt) (#4956)
* unsp refactoring / tv game work (nw)
* unsp refactoring / tv game work (nw)
* srcclean (nw)
* more ops (nw)
* (nw)
* (nw)
* guesses (nw)
* more guesses (nw)
* (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/cpu.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index bbbd03390c8..536bcf974bf 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -2159,6 +2159,11 @@ if (CPUS["UNSP"]~=null) then files { MAME_DIR .. "src/devices/cpu/unsp/unsp.cpp", MAME_DIR .. "src/devices/cpu/unsp/unsp.h", + MAME_DIR .. "src/devices/cpu/unsp/unsp_extended.cpp", + MAME_DIR .. "src/devices/cpu/unsp/unsp_jumps.cpp", + MAME_DIR .. "src/devices/cpu/unsp/unsp_exxx.cpp", + MAME_DIR .. "src/devices/cpu/unsp/unsp_fxxx.cpp", + MAME_DIR .. "src/devices/cpu/unsp/unsp_other.cpp", MAME_DIR .. "src/devices/cpu/unsp/unspdefs.h", MAME_DIR .. "src/devices/cpu/unsp/unspdrc.cpp", MAME_DIR .. "src/devices/cpu/unsp/unspfe.cpp", @@ -2169,6 +2174,11 @@ end if (CPUS["UNSP"]~=null or _OPTIONS["with-tools"]) then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm.cpp") table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm.h") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm_extended.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm_jumps.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm_exxx.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm_fxxx.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/unsp/unspdasm_other.cpp") end -------------------------------------------------- |