diff options
| author | 2021-09-07 19:51:34 -0400 | |
|---|---|---|
| committer | 2021-09-07 19:51:34 -0400 | |
| commit | ea8102906e6af8c17d29b06de9061e72245413a1 (patch) | |
| tree | a9159572c3c6157772e7817d5dfd8420951644e9 /scripts | |
| parent | 87ecae55e334225aa74e292a95a3380d29ace405 (diff) | |
apple2: support for the AppleIISD card [R. Belmont, Florian Reitz]
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 4 | ||||
| -rw-r--r-- | scripts/src/machine.lua | 11 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
4 files changed, 16 insertions, 1 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index b1d38707d32..f0349738813 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2435,6 +2435,8 @@ if (BUSES["A2BUS"]~=null) then MAME_DIR .. "src/devices/bus/a2bus/a2sam.h", MAME_DIR .. "src/devices/bus/a2bus/a2scsi.cpp", MAME_DIR .. "src/devices/bus/a2bus/a2scsi.h", + MAME_DIR .. "src/devices/bus/a2bus/a2sd.cpp", + MAME_DIR .. "src/devices/bus/a2bus/a2sd.h", MAME_DIR .. "src/devices/bus/a2bus/a2softcard.cpp", MAME_DIR .. "src/devices/bus/a2bus/a2softcard.h", MAME_DIR .. "src/devices/bus/a2bus/a2ssc.cpp", @@ -4365,7 +4367,7 @@ if (BUSES["CBUS"]~=null) then MAME_DIR .. "src/devices/bus/cbus/pc9801_26.cpp", MAME_DIR .. "src/devices/bus/cbus/pc9801_26.h", MAME_DIR .. "src/devices/bus/cbus/pc9801_55.cpp", - MAME_DIR .. "src/devices/bus/cbus/pc9801_55.h", + MAME_DIR .. "src/devices/bus/cbus/pc9801_55.h", MAME_DIR .. "src/devices/bus/cbus/pc9801_86.cpp", MAME_DIR .. "src/devices/bus/cbus/pc9801_86.h", MAME_DIR .. "src/devices/bus/cbus/pc9801_118.cpp", diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 3bfdace0099..30f5c86408f 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4185,6 +4185,17 @@ end --------------------------------------------------- -- +--@src/devices/machine/spi_sdcard.h,MACHINES["SPISDCARD"] = true +--------------------------------------------------- +if (MACHINES["SPISDCARD"]~=null) then + files { + MAME_DIR .. "src/devices/machine/spi_sdcard.cpp", + MAME_DIR .. "src/devices/machine/spi_sdcard.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/appldriv.h,MACHINES["APPLE_DRIVE"] = true --------------------------------------------------- if (MACHINES["APPLE_DRIVE"]~=null) then diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index dfcd352a012..7ff86036ccb 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -651,6 +651,7 @@ MACHINES["SMC91C9X"] = true MACHINES["SEGA_SCU"] = true MACHINES["SMPC"] = true --MACHINES["SPG2XX"] = true +--MACHINES["SPISDCARD"] = true MACHINES["STVCD"] = true --MACHINES["SUN4C_MMU"] = true MACHINES["SWTPC8212"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index cf7911fc03e..bc09c366f15 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -692,6 +692,7 @@ MACHINES["SEGA_SCU"] = true MACHINES["SMPC"] = true MACHINES["SPG2XX"] = true MACHINES["SPG290"] = true +MACHINES["SPISDCARD"] = true MACHINES["STVCD"] = true MACHINES["SUN4C_MMU"] = true MACHINES["SWTPC8212"] = true |
