diff options
| author | 2016-04-13 23:31:07 +0200 | |
|---|---|---|
| committer | 2016-04-13 23:31:07 +0200 | |
| commit | af570db2d03fcdddcae52a7aa637e1f5c9b37b5d (patch) | |
| tree | 50b889a40a2d5938ad708c2e332055008e0628fa /scripts | |
| parent | 1c80bbd4352e4a4e0e55aad292e9e7d30e80147e (diff) | |
ng_aes.cpp: converted AES controllers to work through slot devices.
Also, separated more clearly the CD component by the base unit. [Fabio Priuli]
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 19 | ||||
| -rw-r--r-- | scripts/target/mame/arcade.lua | 1 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
3 files changed, 20 insertions, 1 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 43a86be74c2..d1acc611254 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -705,7 +705,7 @@ end --------------------------------------------------- -- ---@src/devices/bus/intv/slot.h,BUSES["INTV_CTRL"] = true +--@src/devices/bus/intv_ctrl/ctrl.h,BUSES["INTV_CTRL"] = true --------------------------------------------------- if (BUSES["INTV_CTRL"]~=null) then @@ -1951,6 +1951,23 @@ end --------------------------------------------------- -- +--@src/devices/bus/neogeo_ctrl/ctrl.h,BUSES["NEOGEO_CTRL"] = true +--------------------------------------------------- + +if (BUSES["NEOGEO_CTRL"]~=null) then + files { + MAME_DIR .. "src/devices/bus/neogeo_ctrl/ctrl.cpp", + MAME_DIR .. "src/devices/bus/neogeo_ctrl/ctrl.h", + MAME_DIR .. "src/devices/bus/neogeo_ctrl/joystick.cpp", + MAME_DIR .. "src/devices/bus/neogeo_ctrl/joystick.h", + MAME_DIR .. "src/devices/bus/neogeo_ctrl/mahjong.cpp", + MAME_DIR .. "src/devices/bus/neogeo_ctrl/mahjong.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/bus/saturn/sat_slot.h,BUSES["SATURN"] = true --------------------------------------------------- diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index b56343e389b..3e50efd03a3 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -617,6 +617,7 @@ BUSES["MIDI"] = true --BUSES["MEGADRIVE"] = true --BUSES["MSX_SLOT"] = true BUSES["NEOGEO"] = true +BUSES["NEOGEO_CTRL"] = true --BUSES["NES"] = true --BUSES["NUBUS"] = true --BUSES["O2"] = true diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index b2d909afe9e..9101b913f36 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -631,6 +631,7 @@ BUSES["MEGADRIVE"] = true BUSES["MSX_SLOT"] = true BUSES["NASBUS"] = true BUSES["NEOGEO"] = true +BUSES["NEOGEO_CTRL"] = true BUSES["NES"] = true BUSES["NES_CTRL"] = true BUSES["NEWBRAIN"] = true |
