diff options
| author | 2016-09-06 17:25:13 +0100 | |
|---|---|---|
| committer | 2016-09-23 10:55:28 +0100 | |
| commit | b396019b8c079477e2461ba5799f184478b41076 (patch) | |
| tree | bc7630ccfd11d6a3292ed92c22fea9caec086efa /scripts | |
| parent | 4ae03d893f9cbe18a7bad49a01e81b119f1f9bf8 (diff) | |
bbc: added joyport slot device to Master Compact, defaulting to joystick
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 15 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 9c67774778d..6f9fee4fcb0 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -255,6 +255,21 @@ end --------------------------------------------------- -- +--@src/devices/bus/bbc/joyport/joyport.h,BUSES["BBC_JOYPORT"] = true +--------------------------------------------------- + +if (BUSES["BBC_JOYPORT"]~=null) then + files { + MAME_DIR .. "src/devices/bus/bbc/joyport/joyport.cpp", + MAME_DIR .. "src/devices/bus/bbc/joyport/joyport.h", + MAME_DIR .. "src/devices/bus/bbc/joyport/joystick.cpp", + MAME_DIR .. "src/devices/bus/bbc/joyport/joystick.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/bus/bbc/1mhzbus/1mhzbus.h,BUSES["BBC_1MHZBUS"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 708647c70f5..075ba75512f 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -611,6 +611,7 @@ BUSES["ARCADIA"] = true BUSES["ASTROCADE"] = true BUSES["BBC_FDC"] = true BUSES["BBC_ANALOGUE"] = true +BUSES["BBC_JOYPORT"] = true BUSES["BBC_1MHZBUS"] = true BUSES["BBC_TUBE"] = true BUSES["BBC_USERPORT"] = true |
