diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 27 | ||||
-rw-r--r-- | scripts/src/machine.lua | 50 |
2 files changed, 23 insertions, 54 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 79c00329c85..f0f2e9c0006 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -488,10 +488,6 @@ end --@src/devices/bus/ata/ataintf.h,BUSES["ATA"] = true --------------------------------------------------- -if (MACHINES["ATAFLASH"]~=null) then - BUSES["ATA"] = true -end - if (BUSES["ATA"]~=null) then files { MAME_DIR .. "src/devices/bus/ata/atadev.cpp", @@ -2193,6 +2189,29 @@ end --------------------------------------------------- -- +--@src/devices/bus/pccard/pccard.h,BUSES["PCCARD"] = true +--------------------------------------------------- + +if (BUSES["PCCARD"]~=null) then + files { + MAME_DIR .. "src/devices/bus/pccard/pccard.cpp", + MAME_DIR .. "src/devices/bus/pccard/pccard.h", + MAME_DIR .. "src/devices/bus/pccard/ataflash.cpp", + MAME_DIR .. "src/devices/bus/pccard/ataflash.h", + MAME_DIR .. "src/devices/bus/pccard/k573npu.cpp", + MAME_DIR .. "src/devices/bus/pccard/k573npu.h", + MAME_DIR .. "src/devices/bus/pccard/konami_dual.cpp", + MAME_DIR .. "src/devices/bus/pccard/konami_dual.h", + MAME_DIR .. "src/devices/bus/pccard/linflash.cpp", + MAME_DIR .. "src/devices/bus/pccard/linflash.h", + MAME_DIR .. "src/devices/bus/pccard/sram.cpp", + MAME_DIR .. "src/devices/bus/pccard/sram.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/bus/pc_kbd/pc_kbdc.h,BUSES["PC_KBD"] = true --------------------------------------------------- diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 147271a2626..3953786b204 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -920,19 +920,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/ataflash.h,MACHINES["ATAFLASH"] = true ---------------------------------------------------- - -if (MACHINES["ATAFLASH"]~=null) then - MACHINES["PCCARD"] = true - files { - MAME_DIR .. "src/devices/machine/ataflash.cpp", - MAME_DIR .. "src/devices/machine/ataflash.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/atastorage.h,MACHINES["ATASTORAGE"] = true --------------------------------------------------- @@ -2110,18 +2097,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/linflash.h,MACHINES["LINFLASH"] = true ---------------------------------------------------- - -if (MACHINES["LINFLASH"]~=null) then - files { - MAME_DIR .. "src/devices/machine/linflash.cpp", - MAME_DIR .. "src/devices/machine/linflash.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/locomo.h,MACHINES["LOCOMO"] = true --------------------------------------------------- @@ -3067,7 +3042,6 @@ end --------------------------------------------------- if (MACHINES["RF5C296"]~=null) then - MACHINES["PCCARD"] = true files { MAME_DIR .. "src/devices/machine/rf5c296.cpp", MAME_DIR .. "src/devices/machine/rf5c296.h", @@ -4142,18 +4116,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/pccard.h,MACHINES["PCCARD"] = true ---------------------------------------------------- - -if (MACHINES["PCCARD"]~=null) then - files { - MAME_DIR .. "src/devices/machine/pccard.cpp", - MAME_DIR .. "src/devices/machine/pccard.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/i8255.h,MACHINES["I8255"] = true --------------------------------------------------- @@ -5322,18 +5284,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/pccard_sram.h,MACHINES["PCCARD_SRAM"] = true ---------------------------------------------------- - -if (MACHINES["PCCARD_SRAM"]~=null) then - files { - MAME_DIR .. "src/devices/machine/pccard_sram.cpp", - MAME_DIR .. "src/devices/machine/pccard_sram.h", - } -end - ---------------------------------------------------- --- --@src/devices/machine/tc9223.h,MACHINES["TC9223"] = true --------------------------------------------------- |