diff options
author | 2023-06-29 05:31:33 +1000 | |
---|---|---|
committer | 2023-06-29 05:31:33 +1000 | |
commit | f197f35c25770a6b439601cc8fcafee34ca556c0 (patch) | |
tree | f8668ef1b8ea03839ac2794b33a2f21b9a2e0502 /scripts/src/machine.lua | |
parent | 4d944e28e49c441939b6b59747c9ff0019d31a73 (diff) |
machine/ataflash.cpp: Untangle from the parallel ATA interface.
This isolates the ATA disk drive interface implementation from the
physical parallel ATA device interface. The ATA Flash PC Card is no
longer a kind of parallel ATA device.
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 2fcc8ea9a69..59dfd6dbdea 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -930,6 +930,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/atahle.h,MACHINES["ATAHLE"] = true +--------------------------------------------------- + +if (MACHINES["ATAHLE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/atahle.cpp", + MAME_DIR .. "src/devices/machine/atahle.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ataflash.h,MACHINES["ATAFLASH"] = true --------------------------------------------------- @@ -943,6 +955,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/atastorage.h,MACHINES["ATASTORAGE"] = true +--------------------------------------------------- + +if (MACHINES["ATASTORAGE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/atastorage.cpp", + MAME_DIR .. "src/devices/machine/atastorage.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/atmel_arm_aic.h,MACHINES["ARM_AIC"] = true --------------------------------------------------- |