summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/hx20.h
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2014-01-03 19:35:59 +0000
committer Dirk Best <mail@dirk-best.de>2014-01-03 19:35:59 +0000
commit5a4efd93da53bd0237e7e62ed6e68222b6dcb9a8 (patch)
tree6f64e60c84defab043eee9511e3c664a7e023353 /src/mess/includes/hx20.h
parent1eeab0349743431d9d94506afbf8eb7c576a0d2c (diff)
px4.c: preliminary tf20 floppy support
Diffstat (limited to 'src/mess/includes/hx20.h')
-rw-r--r--src/mess/includes/hx20.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mess/includes/hx20.h b/src/mess/includes/hx20.h
index fb491236630..dfccaffc288 100644
--- a/src/mess/includes/hx20.h
+++ b/src/mess/includes/hx20.h
@@ -111,6 +111,9 @@ public:
DECLARE_WRITE_LINE_MEMBER( rtc_irq_w );
+ DECLARE_WRITE_LINE_MEMBER( sio_rx_w ) { m_sio_rx = state; }
+ DECLARE_WRITE_LINE_MEMBER( sio_pin_w ) { m_sio_pin = state; }
+
void update_interrupt();
// CPU state
@@ -126,6 +129,10 @@ public:
// video state
UINT8 m_lcd_data;
+
+ // sio state
+ int m_sio_rx;
+ int m_sio_pin;
};
#endif