diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/bus.lua | 2 | ||||
-rw-r--r-- | scripts/src/machine.lua | 55 | ||||
-rw-r--r-- | scripts/target/mame/arcade.lua | 5 | ||||
-rw-r--r-- | scripts/target/mame/mess.lua | 5 |
4 files changed, 67 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 90ba83740a2..0130cf9e40e 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2286,6 +2286,8 @@ if (BUSES["A2BUS"]~=null) then MAME_DIR .. "src/devices/bus/a2bus/a2applicard.h", MAME_DIR .. "src/devices/bus/a2bus/a2hsscsi.cpp", MAME_DIR .. "src/devices/bus/a2bus/a2hsscsi.h", + MAME_DIR .. "src/devices/bus/a2bus/a2iwm.cpp", + MAME_DIR .. "src/devices/bus/a2bus/a2iwm.h", MAME_DIR .. "src/devices/bus/a2bus/a2ultraterm.cpp", MAME_DIR .. "src/devices/bus/a2bus/a2ultraterm.h", MAME_DIR .. "src/devices/bus/a2bus/a2pic.cpp", diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 8e582b648a4..e9a8fda147e 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4352,3 +4352,58 @@ if (MACHINES["CXD1185"]~=null) then MAME_DIR .. "src/devices/machine/cxd1185.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/applefdc.h,MACHINES["APPLE_FDINTF"] = true +--------------------------------------------------- +if (MACHINES["APPLE_FDINTF"]~=null) then + files { + MAME_DIR .. "src/devices/machine/applefdintf.cpp", + MAME_DIR .. "src/devices/machine/applefdintf.h", + } +end + +--------------------------------------------------- + -- + --@src/devices/machine/iwm.h,MACHINES["IWM"] = true + --------------------------------------------------- + if (MACHINES["IWM"]~=null) then + files { + MAME_DIR .. "src/devices/machine/iwm.cpp", + MAME_DIR .. "src/devices/machine/iwm.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/swim1.h,MACHINES["SWIM1"] = true +--------------------------------------------------- +if (MACHINES["SWIM1"]~=null) then + files { + MAME_DIR .. "src/devices/machine/swim1.cpp", + MAME_DIR .. "src/devices/machine/swim1.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/swim2.h,MACHINES["SWIM2"] = true +--------------------------------------------------- +if (MACHINES["SWIM2"]~=null) then + files { + MAME_DIR .. "src/devices/machine/swim2.cpp", + MAME_DIR .. "src/devices/machine/swim2.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/swim3.h,MACHINES["SWIM3"] = true +--------------------------------------------------- +if (MACHINES["SWIM3"]~=null) then + files { + MAME_DIR .. "src/devices/machine/swim3.cpp", + MAME_DIR .. "src/devices/machine/swim3.h", + } +end
\ No newline at end of file diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index cd8fcdb4463..5f8c5023a28 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -675,6 +675,11 @@ MACHINES["FDC37C665GT"] = true MACHINES["STEPPERS"] = true --MACHINES["CORVUSHD"] = true --MACHINES["WOZFDC"] = true +--MACHINES["APPLE_FDINTF"] = true +--MACHINES["IWM"] = true +--MACHINES["SWIM1"] = true +--MACHINES["SWIM2"] = true +--MACHINES["SWIM3"] = true --MACHINES["DIABLO_HD"] = true MACHINES["PCI9050"] = true MACHINES["TMS1024"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index bf83b93d972..061c6118e24 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -717,6 +717,11 @@ MACHINES["STRATA"] = true MACHINES["STEPPERS"] = true MACHINES["CORVUSHD"] = true MACHINES["WOZFDC"] = true +MACHINES["APPLE_FDINTF"] = true +MACHINES["IWM"] = true +MACHINES["SWIM1"] = true +MACHINES["SWIM2"] = true +MACHINES["SWIM3"] = true MACHINES["DIABLO_HD"] = true MACHINES["TMS1024"] = true MACHINES["NSC810"] = true |