diff options
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 9597c310fd4..589bf746219 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2841,4 +2841,36 @@ if (MACHINES["SMARTMEDIA"]~=null) then MAME_DIR .. "src/devices/machine/smartmed.cpp", MAME_DIR .. "src/devices/machine/smartmed.h", } -end
\ No newline at end of file +end + +--------------------------------------------------- +-- +--@src/devices/machine/appldriv.h,MACHINES["APPLE_DRIVE"] = true +--------------------------------------------------- +if (MACHINES["APPLE_DRIVE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/appldriv.cpp", + MAME_DIR .. "src/devices/machine/appldriv.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/applefdc.h,MACHINES["APPLE_FDC"] = true +--------------------------------------------------- +if (MACHINES["APPLE_FDC"]~=null) then + files { + MAME_DIR .. "src/devices/machine/applefdc.cpp", + MAME_DIR .. "src/devices/machine/applefdc.h", + } +end +--------------------------------------------------- +-- +--@src/devices/machine/sonydriv.h,MACHINES["SONY_DRIVE"] = true +--------------------------------------------------- +if (MACHINES["SONY_DRIVE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/sonydriv.cpp", + MAME_DIR .. "src/devices/machine/sonydriv.h", + } +end |