diff options
author | 2016-09-06 17:25:13 +0100 | |
---|---|---|
committer | 2016-09-23 10:55:28 +0100 | |
commit | b396019b8c079477e2461ba5799f184478b41076 (patch) | |
tree | bc7630ccfd11d6a3292ed92c22fea9caec086efa /scripts/src | |
parent | 4ae03d893f9cbe18a7bad49a01e81b119f1f9bf8 (diff) |
bbc: added joyport slot device to Master Compact, defaulting to joystick
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 15 |
1 files changed, 15 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 --------------------------------------------------- |