diff options
author | 2021-09-07 19:51:34 -0400 | |
---|---|---|
committer | 2021-09-07 19:51:34 -0400 | |
commit | ea8102906e6af8c17d29b06de9061e72245413a1 (patch) | |
tree | a9159572c3c6157772e7817d5dfd8420951644e9 /scripts/src/machine.lua | |
parent | 87ecae55e334225aa74e292a95a3380d29ace405 (diff) |
apple2: support for the AppleIISD card [R. Belmont, Florian Reitz]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 11 |
1 files changed, 11 insertions, 0 deletions
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 |