diff options
| author | 2017-07-10 17:48:08 +0200 | |
|---|---|---|
| committer | 2017-07-10 17:49:16 +0200 | |
| commit | 7d980227979c30aac9eb527f15c5b893aebea5c6 (patch) | |
| tree | 3a0a064457a7bec2bd9a3c57f7cfddc8bd48bea8 /scripts | |
| parent | a725cd2ba8839e166ac9f43893c2506214492661 (diff) | |
ti99: Moved Hexbus one level up
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/bus.lua | 18 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 14 insertions, 5 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index b4eb4f52400..1991a06ab3a 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -767,6 +767,19 @@ if (BUSES["GENERIC"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/bus/hexbus/hexbus.h,BUSES["HEXBUS"] = true +--------------------------------------------------- + +if (BUSES["HEXBUS"]~=null) then + files { + MAME_DIR .. "src/devices/bus/hexbus/hexbus.cpp", + MAME_DIR .. "src/devices/bus/hexbus/hexbus.h", + MAME_DIR .. "src/devices/bus/hexbus/hx5102.cpp", + MAME_DIR .. "src/devices/bus/hexbus/hx5102.h", + } +end --------------------------------------------------- -- @@ -2388,7 +2401,6 @@ end --@src/devices/bus/ti99/joyport/joyport.h,BUSES["TI99"] = true --@src/devices/bus/ti99/peb/peribox.h,BUSES["TI99"] = true --@src/devices/bus/ti99/internal/genboard.h,BUSES["TI99"] = true ---@src/devices/bus/ti99/hexbus/hexbus.h,BUSES["TI99"] = true --------------------------------------------------- if (BUSES["TI99"]~=null) then @@ -2418,10 +2430,6 @@ if (BUSES["TI99"]~=null) then MAME_DIR .. "src/devices/bus/ti99/gromport/multiconn.h", MAME_DIR .. "src/devices/bus/ti99/gromport/singleconn.cpp", MAME_DIR .. "src/devices/bus/ti99/gromport/singleconn.h", - MAME_DIR .. "src/devices/bus/ti99/hexbus/hexbus.cpp", - MAME_DIR .. "src/devices/bus/ti99/hexbus/hexbus.h", - MAME_DIR .. "src/devices/bus/ti99/hexbus/hx5102.cpp", - MAME_DIR .. "src/devices/bus/ti99/hexbus/hx5102.h", MAME_DIR .. "src/devices/bus/ti99/joyport/handset.cpp", MAME_DIR .. "src/devices/bus/ti99/joyport/handset.h", MAME_DIR .. "src/devices/bus/ti99/joyport/joyport.cpp", diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 6b4b0c9f62d..60aa06fa3c3 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -662,6 +662,7 @@ BUSES["GAMEBOY"] = true BUSES["GAMEGEAR"] = true BUSES["GBA"] = true BUSES["GENERIC"] = true +BUSES["HEXBUS"] = true BUSES["HPHIL"] = true BUSES["HPDIO"] = true BUSES["IEEE488"] = true |
