diff options
| author | 2021-10-03 03:52:22 +1100 | |
|---|---|---|
| committer | 2021-10-03 03:52:22 +1100 | |
| commit | 299265cc52149af55581ad4fd62772144a17d452 (patch) | |
| tree | 0c3cbefe1fbb28eb059ad61b2caaa0a14061b28a /scripts/src | |
| parent | 0eeb918991d9d9d5acac6eab82fb6b73b9ff71b4 (diff) | |
bus/rs232: Added a configurable patch box device, and various cleanups.
Added comments with V.24 interchange circuit numbers and names to
rs232.h to make the meanings of the abbreviated signal names clearer.
Moved a few slot card classes out of headers and into anonymous
namespaces to reduce compile depedencies and exported symbols.
Transliterated a Korean NES game title.
Diffstat (limited to 'scripts/src')
| -rw-r--r-- | scripts/src/bus.lua | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 3a02f3559c1..bbf1532e71d 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2689,36 +2689,38 @@ end if (BUSES["RS232"]~=null) then files { + MAME_DIR .. "src/devices/bus/rs232/exorterm.cpp", + MAME_DIR .. "src/devices/bus/rs232/exorterm.h", + MAME_DIR .. "src/devices/bus/rs232/hlemouse.cpp", + MAME_DIR .. "src/devices/bus/rs232/hlemouse.h", + MAME_DIR .. "src/devices/bus/rs232/ie15.cpp", + MAME_DIR .. "src/devices/bus/rs232/ie15.h", MAME_DIR .. "src/devices/bus/rs232/keyboard.cpp", MAME_DIR .. "src/devices/bus/rs232/keyboard.h", MAME_DIR .. "src/devices/bus/rs232/loopback.cpp", MAME_DIR .. "src/devices/bus/rs232/loopback.h", + MAME_DIR .. "src/devices/bus/rs232/mboardd.cpp", + MAME_DIR .. "src/devices/bus/rs232/mboardd.h", MAME_DIR .. "src/devices/bus/rs232/null_modem.cpp", MAME_DIR .. "src/devices/bus/rs232/null_modem.h", + MAME_DIR .. "src/devices/bus/rs232/patchbox.cpp", + MAME_DIR .. "src/devices/bus/rs232/patchbox.h", MAME_DIR .. "src/devices/bus/rs232/printer.cpp", MAME_DIR .. "src/devices/bus/rs232/printer.h", - MAME_DIR .. "src/devices/bus/rs232/rs232.cpp", - MAME_DIR .. "src/devices/bus/rs232/rs232.h", MAME_DIR .. "src/devices/bus/rs232/pty.cpp", MAME_DIR .. "src/devices/bus/rs232/pty.h", - MAME_DIR .. "src/devices/bus/rs232/hlemouse.cpp", - MAME_DIR .. "src/devices/bus/rs232/hlemouse.h", + MAME_DIR .. "src/devices/bus/rs232/rs232.cpp", + MAME_DIR .. "src/devices/bus/rs232/rs232.h", + MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.cpp", + MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.h", MAME_DIR .. "src/devices/bus/rs232/sun_kbd.cpp", MAME_DIR .. "src/devices/bus/rs232/sun_kbd.h", + MAME_DIR .. "src/devices/bus/rs232/swtpc8212.cpp", + MAME_DIR .. "src/devices/bus/rs232/swtpc8212.h", MAME_DIR .. "src/devices/bus/rs232/terminal.cpp", MAME_DIR .. "src/devices/bus/rs232/terminal.h", MAME_DIR .. "src/devices/bus/rs232/xvd701.cpp", MAME_DIR .. "src/devices/bus/rs232/xvd701.h", - MAME_DIR .. "src/devices/bus/rs232/ie15.cpp", - MAME_DIR .. "src/devices/bus/rs232/ie15.h", - MAME_DIR .. "src/devices/bus/rs232/swtpc8212.cpp", - MAME_DIR .. "src/devices/bus/rs232/swtpc8212.h", - MAME_DIR .. "src/devices/bus/rs232/exorterm.cpp", - MAME_DIR .. "src/devices/bus/rs232/exorterm.h", - MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.cpp", - MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.h", - MAME_DIR .. "src/devices/bus/rs232/mboardd.cpp", - MAME_DIR .. "src/devices/bus/rs232/mboardd.h", } end |
