diff options
| author | 2017-05-23 23:20:52 +0200 | |
|---|---|---|
| committer | 2017-05-23 23:22:06 +0200 | |
| commit | 50b20ddf23ea1b959732f6ad65d54f3949f9f068 (patch) | |
| tree | 648036db4d5e0d6cb7b36d9330e8aa74f96507a8 /scripts/src | |
| parent | 80b640dcf89214075fe6dd901dfc960403bc7cb1 (diff) | |
ti99: Wrapped into namespaces; minor rearrangement
Diffstat (limited to 'scripts/src')
| -rw-r--r-- | scripts/src/bus.lua | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 97b664f7d74..8008ac4e67a 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2342,7 +2342,6 @@ end --@src/devices/bus/ti99x/990_dk.h,BUSES["TI99X"] = true --@src/devices/bus/ti99x/990_tap.h,BUSES["TI99X"] = true --@src/devices/bus/ti99x/990_hd.h,BUSES["TI99X"] = true ---@src/devices/bus/ti99x/genboard.h,BUSES["TI99X"] = true --------------------------------------------------- if (BUSES["TI99X"]~=null) then @@ -2353,16 +2352,6 @@ if (BUSES["TI99X"]~=null) then MAME_DIR .. "src/devices/bus/ti99x/990_hd.h", MAME_DIR .. "src/devices/bus/ti99x/990_tap.cpp", MAME_DIR .. "src/devices/bus/ti99x/990_tap.h", - MAME_DIR .. "src/devices/bus/ti99x/998board.cpp", - MAME_DIR .. "src/devices/bus/ti99x/998board.h", - MAME_DIR .. "src/devices/bus/ti99x/datamux.cpp", - MAME_DIR .. "src/devices/bus/ti99x/datamux.h", - MAME_DIR .. "src/devices/bus/ti99x/genboard.cpp", - MAME_DIR .. "src/devices/bus/ti99x/genboard.h", - MAME_DIR .. "src/devices/bus/ti99x/gromport.cpp", - MAME_DIR .. "src/devices/bus/ti99x/gromport.h", - MAME_DIR .. "src/devices/bus/ti99x/ti99defs.cpp", - MAME_DIR .. "src/devices/bus/ti99x/ti99defs.h", } end @@ -2371,10 +2360,23 @@ end --@src/devices/bus/ti99/colorbus/colorbus.h,BUSES["TI99"] = true --@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 + --------------------------------------------------- if (BUSES["TI99"]~=null) then files { + MAME_DIR .. "src/devices/bus/ti99/ti99defs.h", + MAME_DIR .. "src/devices/bus/ti99/internal/998board.cpp", + MAME_DIR .. "src/devices/bus/ti99/internal/998board.h", + MAME_DIR .. "src/devices/bus/ti99/internal/datamux.cpp", + MAME_DIR .. "src/devices/bus/ti99/internal/datamux.h", + MAME_DIR .. "src/devices/bus/ti99/internal/evpcconn.cpp", + MAME_DIR .. "src/devices/bus/ti99/internal/evpcconn.h", + MAME_DIR .. "src/devices/bus/ti99/internal/genboard.cpp", + MAME_DIR .. "src/devices/bus/ti99/internal/genboard.h", + MAME_DIR .. "src/devices/bus/ti99/internal/gromport.cpp", + MAME_DIR .. "src/devices/bus/ti99/internal/gromport.h", MAME_DIR .. "src/devices/bus/ti99/colorbus/busmouse.cpp", MAME_DIR .. "src/devices/bus/ti99/colorbus/busmouse.h", MAME_DIR .. "src/devices/bus/ti99/colorbus/colorbus.cpp", |
