diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/cpu.lua | 14 | ||||
-rw-r--r-- | scripts/src/machine.lua | 28 | ||||
-rw-r--r-- | scripts/src/sound.lua | 12 |
3 files changed, 46 insertions, 8 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 273dc7b5597..e10e7a84de6 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -871,6 +871,20 @@ if CPUS["SH"] then MAME_DIR .. "src/devices/cpu/sh/sh4regs.h", MAME_DIR .. "src/devices/cpu/sh/sh4tmu.cpp", MAME_DIR .. "src/devices/cpu/sh/sh4tmu.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014_bsc.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014_bsc.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014_dmac.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014_dmac.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014_intc.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014_intc.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014_mtu.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014_mtu.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014_port.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014_port.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014_sci.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014_sci.h", + MAME_DIR .. "src/devices/cpu/sh/sh7014.cpp", + MAME_DIR .. "src/devices/cpu/sh/sh7014.h", MAME_DIR .. "src/devices/cpu/sh/sh7021.cpp", MAME_DIR .. "src/devices/cpu/sh/sh7021.h", MAME_DIR .. "src/devices/cpu/sh/sh7032.cpp", diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 9b8c615500c..5138a692fee 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1756,25 +1756,37 @@ end --------------------------------------------------- -- ---@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true +--@src/devices/machine/ibm21s850.h,MACHINES["IBM21S850"] = true --------------------------------------------------- -if (MACHINES["ICM7170"]~=null) then +if (MACHINES["IBM21S850"]~=null) then files { - MAME_DIR .. "src/devices/machine/icm7170.cpp", - MAME_DIR .. "src/devices/machine/icm7170.h", + MAME_DIR .. "src/devices/machine/ibm21s850.cpp", + MAME_DIR .. "src/devices/machine/ibm21s850.h", } end --------------------------------------------------- -- ---@src/devices/machine/ibm21s850.h,MACHINES["IBM21S850"] = true +--@src/devices/machine/icd2061a.h,MACHINES["ICD2061A"] = true --------------------------------------------------- -if (MACHINES["IBM21S850"]~=null) then +if (MACHINES["ICD2061A"]~=null) then files { - MAME_DIR .. "src/devices/machine/ibm21s850.cpp", - MAME_DIR .. "src/devices/machine/ibm21s850.h", + MAME_DIR .. "src/devices/machine/icd2061a.cpp", + MAME_DIR .. "src/devices/machine/icd2061a.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true +--------------------------------------------------- + +if (MACHINES["ICM7170"]~=null) then + files { + MAME_DIR .. "src/devices/machine/icm7170.cpp", + MAME_DIR .. "src/devices/machine/icm7170.h", } end diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 59ebe104b2e..4959be4e3a1 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -1442,6 +1442,18 @@ if (SOUNDS["LC7535"]~=null) then end --------------------------------------------------- +-- Sanyo LC78836M +--@src/devices/sound/lc78836m.h,SOUNDS["LC78836M"] = true +--------------------------------------------------- + +if (SOUNDS["LC78836M"]~=null) then + files { + MAME_DIR .. "src/devices/sound/lc78836m.cpp", + MAME_DIR .. "src/devices/sound/lc78836m.h", + } +end + +--------------------------------------------------- -- Sanyo LC82310 --@src/devices/sound/lc82310.h,SOUNDS["LC82310"] = true --------------------------------------------------- |