diff options
| author | 2020-01-19 20:59:31 +0100 | |
|---|---|---|
| committer | 2020-01-19 20:59:31 +0100 | |
| commit | ee0e0c972c91ef006d8f76f82fb4120b8d20c41c (patch) | |
| tree | 75fe4d74c2c2ef1b4795b36a78d89c3c4a58b67e /scripts | |
| parent | 0f69abe4dc6e757713f45e09102cfbedca25a473 (diff) | |
galaxian.cpp: Implement konami filters using netlist. [Couriersud]
This change improves accuracy and scalability.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/target/mame/arcade.lua | 2 | ||||
| -rw-r--r-- | scripts/target/mame/nl.lua | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 77fe0f31c7a..388f48f3fcb 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -2821,6 +2821,8 @@ files { MAME_DIR .. "src/mame/audio/galaxian.cpp", MAME_DIR .. "src/mame/audio/galaxian.h", MAME_DIR .. "src/mame/video/galaxian.cpp", + MAME_DIR .. "src/mame/audio/nl_konami.h", + MAME_DIR .. "src/mame/audio/nl_konami.cpp", MAME_DIR .. "src/mame/drivers/galaxold.cpp", MAME_DIR .. "src/mame/includes/galaxold.h", MAME_DIR .. "src/mame/machine/galaxold.cpp", diff --git a/scripts/target/mame/nl.lua b/scripts/target/mame/nl.lua index 6701256bc56..c365f8e71a1 100644 --- a/scripts/target/mame/nl.lua +++ b/scripts/target/mame/nl.lua @@ -51,6 +51,7 @@ SOUNDS["TMS5220"] = true SOUNDS["BEEP"] = true SOUNDS["VOLT_REG"] = true SOUNDS["SPEAKER"] = true +SOUNDS["DIGITALKER"] = true -------------------------------------------------- -- specify available video cores @@ -184,6 +185,17 @@ files{ MAME_DIR .. "src/mame/includes/cheekyms.h", MAME_DIR .. "src/mame/video/cheekyms.cpp", + MAME_DIR .. "src/mame/drivers/galaxian.cpp", + MAME_DIR .. "src/mame/includes/galaxian.h", + MAME_DIR .. "src/mame/audio/galaxian.cpp", + MAME_DIR .. "src/mame/audio/galaxian.h", + MAME_DIR .. "src/mame/video/galaxian.cpp", + MAME_DIR .. "src/mame/audio/nl_konami.h", + MAME_DIR .. "src/mame/audio/nl_konami.cpp", + + MAME_DIR .. "src/mame/audio/cclimber.cpp", + MAME_DIR .. "src/mame/audio/cclimber.h", + MAME_DIR .. "src/mame/audio/nl_zac1b11142.cpp", MAME_DIR .. "src/mame/audio/nl_zacc1b11142.h", MAME_DIR .. "src/mame/audio/zaccaria.cpp", |
