diff options
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 39 |
1 files changed, 24 insertions, 15 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 824fce923ff..abec26e8493 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2556,6 +2556,30 @@ end --------------------------------------------------- -- +--@src/devices/machine/mos6530l.h,MACHINES["MOS6530L"] = true +--------------------------------------------------- + +if (MACHINES["MOS6530L"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mos6530l.cpp", + MAME_DIR .. "src/devices/machine/mos6530l.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/mos6530n.h,MACHINES["MOS6530"] = true +--------------------------------------------------- + +if (MACHINES["MOS6530"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mos6530n.cpp", + MAME_DIR .. "src/devices/machine/mos6530n.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/mos6702.h,MACHINES["MOS6702"] = true --------------------------------------------------- @@ -2604,21 +2628,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/mos6530.h,MACHINES["MIOT6530"] = true ---@src/devices/machine/mos6530n.h,MACHINES["MIOT6530"] = true ---------------------------------------------------- - -if (MACHINES["MIOT6530"]~=null) then - files { - MAME_DIR .. "src/devices/machine/mos6530.cpp", - MAME_DIR .. "src/devices/machine/mos6530.h", - MAME_DIR .. "src/devices/machine/mos6530n.cpp", - MAME_DIR .. "src/devices/machine/mos6530n.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/mos6551.h,MACHINES["MOS6551"] = true --------------------------------------------------- |