diff options
author | 2019-01-10 13:39:58 -0500 | |
---|---|---|
committer | 2019-01-10 13:39:58 -0500 | |
commit | 2416e7933c62c4e54528229afff9b664d536ff8b (patch) | |
tree | 908a8f725009fb7371e74a2dae3488e333993792 /src/devices/bus/uts_kbd | |
parent | 180ae17f5deea20bd3e816882c2f41e5dcfb4a36 (diff) |
uts_kbd/extw: More notes (nw)
Diffstat (limited to 'src/devices/bus/uts_kbd')
-rw-r--r-- | src/devices/bus/uts_kbd/extw.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/devices/bus/uts_kbd/extw.cpp b/src/devices/bus/uts_kbd/extw.cpp index e2d0b7a6aa7..bf65bb9efe7 100644 --- a/src/devices/bus/uts_kbd/extw.cpp +++ b/src/devices/bus/uts_kbd/extw.cpp @@ -7,6 +7,9 @@ This is the default keyboard for the UTS 10 and UTS 20, though the latter's manual claims that "SYS MODE" and "WS MODE" have no function. + User beware: the - and / keys are swapped from their respective + positions on most keyboards. + The LED is located on the LOCK key, but also responds to either shift key being pressed (which also releases the shift lock). @@ -235,7 +238,7 @@ static INPUT_PORTS_START(uts_extw) PORT_BIT(0xff, IP_ACTIVE_LOW, IPT_UNUSED) PORT_START("KEYF") - PORT_DIPNAME(0x0f, 0x0f, "National Layout") + PORT_DIPNAME(0x0f, 0x0f, "National Layout") // stored as a 4-bit value even though only 7 of the first 8 are valid PORT_DIPSETTING(0x0f, "USA/UK English") PORT_DIPSETTING(0x0d, "German (QWERTZ)") PORT_DIPSETTING(0x0c, "European A") |