diff options
Diffstat (limited to 'src/devices/bus/s100/wunderbus.cpp')
-rw-r--r-- | src/devices/bus/s100/wunderbus.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/devices/bus/s100/wunderbus.cpp b/src/devices/bus/s100/wunderbus.cpp index 64eb9638d74..a331d026506 100644 --- a/src/devices/bus/s100/wunderbus.cpp +++ b/src/devices/bus/s100/wunderbus.cpp @@ -53,7 +53,7 @@ DEFINE_DEVICE_TYPE(S100_WUNDERBUS, s100_wunderbus_device, "s100_wunderbus", "Mor */ -WRITE_LINE_MEMBER( s100_wunderbus_device::pic_int_w ) +void s100_wunderbus_device::pic_int_w(int state) { m_bus->irq_w(state); } @@ -61,7 +61,6 @@ WRITE_LINE_MEMBER( s100_wunderbus_device::pic_int_w ) static DEVICE_INPUT_DEFAULTS_START( terminal ) DEVICE_INPUT_DEFAULTS( "RS232_TXBAUD", 0xff, RS232_BAUD_110 ) DEVICE_INPUT_DEFAULTS( "RS232_RXBAUD", 0xff, RS232_BAUD_110 ) - DEVICE_INPUT_DEFAULTS( "RS232_STARTBITS", 0xff, RS232_STARTBITS_1 ) DEVICE_INPUT_DEFAULTS( "RS232_DATABITS", 0xff, RS232_DATABITS_8 ) DEVICE_INPUT_DEFAULTS( "RS232_PARITY", 0xff, RS232_PARITY_NONE ) DEVICE_INPUT_DEFAULTS( "RS232_STOPBITS", 0xff, RS232_STOPBITS_2 ) @@ -72,7 +71,7 @@ DEVICE_INPUT_DEFAULTS_END // UPD1990A_INTERFACE( rtc_intf ) //------------------------------------------------- -WRITE_LINE_MEMBER( s100_wunderbus_device::rtc_tp_w ) +void s100_wunderbus_device::rtc_tp_w(int state) { if (state) { |