summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/chessmachine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/chessmachine.h')
-rw-r--r--src/devices/machine/chessmachine.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/devices/machine/chessmachine.h b/src/devices/machine/chessmachine.h
index b1a11b459f1..d07ac764e5b 100644
--- a/src/devices/machine/chessmachine.h
+++ b/src/devices/machine/chessmachine.h
@@ -46,11 +46,13 @@ private:
devcb_write_line m_data_out;
- u8 m_latch[2] = { 0, 0 };
- void sync0_callback(void *ptr, s32 param);
- void sync1_callback(void *ptr, s32 param);
+ u8 m_latch[2];
+ bool m_bootrom_enabled;
+
+ void data0_w_sync(s32 param);
+ void data1_w_sync(s32 param);
+ void reset_w_sync(s32 param);
- bool m_bootrom_enabled = false;
void install_bootrom(bool enable);
TIMER_DEVICE_CALLBACK_MEMBER(disable_bootrom) { install_bootrom(false); }
u32 disable_bootrom_r();