diff options
author | 2020-02-25 20:32:57 +0700 | |
---|---|---|
committer | 2020-02-25 20:32:57 +0700 | |
commit | 6038ff41f7d7e899e7589091ef82539c6baf9879 (patch) | |
tree | 1176e8fc779c9cae56d1cf27839cc8a5edeef9c0 /scripts/src | |
parent | 4bb92d091a1bc3005d8dfafe879c2da7721fe191 (diff) |
rtpc keyboard: new device (nw)
The host is a long way from being done, but the keyboard seems to be working well enough already.
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 990709c7fb4..7bfef275e8b 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -4136,3 +4136,17 @@ if (BUSES["MULTIBUS"]~=null) then MAME_DIR .. "src/devices/bus/multibus/isbc202.h", } end + +--------------------------------------------------- +-- +--@src/devices/bus/rtpc/kbd_con.h,BUSES["RTPC_KBD"] = true +--------------------------------------------------- + +if (BUSES["RTPC_KBD"]~=null) then + files { + MAME_DIR .. "src/devices/bus/rtpc/kbd_con.cpp", + MAME_DIR .. "src/devices/bus/rtpc/kbd_con.h", + MAME_DIR .. "src/devices/bus/rtpc/kbd.cpp", + MAME_DIR .. "src/devices/bus/rtpc/kbd.h", + } +end |