diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/cpu.lua | 2 | ||||
-rw-r--r-- | scripts/src/sound.lua | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index e10e7a84de6..f7b332e8f01 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -194,6 +194,8 @@ if CPUS["ARM7"] then MAME_DIR .. "src/devices/cpu/arm7/arm7.h", MAME_DIR .. "src/devices/cpu/arm7/arm7thmb.cpp", MAME_DIR .. "src/devices/cpu/arm7/arm7ops.cpp", + MAME_DIR .. "src/devices/cpu/arm7/ap2010cpu.cpp", + MAME_DIR .. "src/devices/cpu/arm7/ap2010cpu.h", MAME_DIR .. "src/devices/cpu/arm7/lpc210x.cpp", MAME_DIR .. "src/devices/cpu/arm7/lpc210x.h", MAME_DIR .. "src/devices/cpu/arm7/upd800468.cpp", diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 7cb136380c7..56573224bfa 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -112,7 +112,6 @@ if (SOUNDS["AC97"]~=null) then end - --------------------------------------------------- -- Apple custom sound chips --@src/devices/sound/asc.h,SOUNDS["ASC"] = true @@ -1656,3 +1655,15 @@ if (SOUNDS["NN71003F"]~=null) then MAME_DIR .. "src/devices/sound/nn71003f.h", } end + +--------------------------------------------------- +-- AP2010 +--@src/devices/sound/ap2010pcm.h,SOUNDS["AP2010"] = true +--------------------------------------------------- + +if (SOUNDS["AP2010"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ap2010pcm.cpp", + MAME_DIR .. "src/devices/sound/ap2010pcm.h", + } +end |