summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/osborne1.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-01-19 10:51:11 +1100
committer Vas Crabb <vas@vastheman.com>2017-01-19 20:51:30 +1100
commit98b85af4a7175e5a50e82efdba4ef3554a54c3c0 (patch)
treedfdc7a444afde171423cb8315babdef3404d0607 /src/mame/drivers/osborne1.cpp
parent64659f8bcaa33b8ecf87a0cb11c5fd30292f4191 (diff)
pitnrun: use new MC68705P5 device
m68705: expose more more internal registers through the state interface * shows contents of registers that can't be read by program code i8251: make receive more reliable clean up a little zorba: meat on the bones * create emulated keyboard device - 88 of 96 matrix keys identified, 6 of 8 DIP switches identified, 3 of 6 outputs identified * connect IEEE-488, RS232 and Centronics ports * hook up all IRQ sources and connect PIT to UARTs * more notes osborne1, gladiatr: use input changed member (nw)
Diffstat (limited to 'src/mame/drivers/osborne1.cpp')
-rw-r--r--src/mame/drivers/osborne1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/osborne1.cpp b/src/mame/drivers/osborne1.cpp
index f94df70c8b5..99b68229b14 100644
--- a/src/mame/drivers/osborne1.cpp
+++ b/src/mame/drivers/osborne1.cpp
@@ -180,7 +180,7 @@ static INPUT_PORTS_START( osborne1 )
PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("RESET")
- PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("RESET") PORT_CODE(KEYCODE_F12)
+ PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("RESET") PORT_CODE(KEYCODE_F12) PORT_CHANGED_MEMBER(DEVICE_SELF, osborne1_state, reset_key, 0)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_UNUSED)