summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author couriersud <couriersud@users.noreply.github.com>2022-05-21 17:16:50 +0200
committer GitHub <noreply@github.com>2022-05-22 01:16:50 +1000
commit324f9d44d5c4293645e7bb8f42e7d95d5ac1e604 (patch)
tree1ad2d66458486f184e11536e247309eb6c0161fb /scripts
parentb33946d980772bf8e973b3816684f313a5b4e9ea (diff)
netlist: More c++, less macros, added support for cspell (#9794)
- More c++, less macros * Significantly reduced the use of unused_var and replaced it with [[maybe_unused]] * use enum class in ppmf.h - Changes to testing code in ptest.h * Catch exceptions in more places * The verbosity of the output can now be controlled * Display of test stats totals - added support for cspell - fixed various typos - fixed SUBTARGET=nl build - fixed more file permissions - srcclean and add fix_permissions target to netlist makefile
Diffstat (limited to 'scripts')
-rw-r--r--scripts/target/mame/nl.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/target/mame/nl.lua b/scripts/target/mame/nl.lua
index 633788cf3bb..a53bb46e7c5 100644
--- a/scripts/target/mame/nl.lua
+++ b/scripts/target/mame/nl.lua
@@ -33,6 +33,7 @@ CPUS["M680X0"] = true
CPUS["F8"] = true
CPUS["CCPU"] = true
CPUS["MCS40"] = true
+CPUS["TMS9900"] = true
--------------------------------------------------
-- Specify all the sound cores necessary for the
@@ -108,6 +109,7 @@ MACHINES["PIT8253"] = true
--MACHINES["BANKDEV"] = true
MACHINES["F3853"] = true
MACHINES["MB14241"] = true
+MACHINES["STEPPERS"] = true
--------------------------------------------------
-- specify available bus cores
@@ -421,6 +423,15 @@ files{
MAME_DIR .. "src/mame/drivers/segattl.cpp",
MAME_DIR .. "src/mame/drivers/taitottl.cpp",
MAME_DIR .. "src/mame/drivers/usbilliards.cpp",
+
+ MAME_DIR .. "src/mame/drivers/jpmsru.cpp",
+ MAME_DIR .. "src/mame/audio/nl_jpmsru.cpp",
+
+ MAME_DIR .. "src/mame/audio/fruitsamples.cpp",
+ MAME_DIR .. "src/mame/audio/fruitsamples.h",
+ MAME_DIR .. "src/mame/video/awpvid.cpp",
+ MAME_DIR .. "src/mame/video/awpvid.h",
+
}
end