diff options
author | 2016-05-01 14:02:26 +0200 | |
---|---|---|
committer | 2016-05-01 14:02:26 +0200 | |
commit | 77b6c7e3c5e1d544ca881040981a37b945a00db1 (patch) | |
tree | 098c183e01306302296da32ee68f4241c695e8a8 /scripts/src/machine.lua | |
parent | da4b4152280b015cb3a6feff0adb4947146bc131 (diff) |
fixed apple2 compile (nw)
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 |