summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/intellect02.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/intellect02.cpp')
-rw-r--r--src/mame/drivers/intellect02.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/mame/drivers/intellect02.cpp b/src/mame/drivers/intellect02.cpp
index edaac71698b..6079031582d 100644
--- a/src/mame/drivers/intellect02.cpp
+++ b/src/mame/drivers/intellect02.cpp
@@ -84,21 +84,20 @@ private:
required_device<generic_slot_device> m_cart;
required_ioport_array<2> m_inputs;
- DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load);
-
- // display stuff
- void update_display();
- u8 m_digit_data;
- u8 m_led_select;
-
// address maps
void main_map(address_map &map);
void main_io(address_map &map);
+ DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load);
+
// I/O handlers
+ void update_display();
DECLARE_READ8_MEMBER(input_r);
DECLARE_WRITE8_MEMBER(digit_w);
DECLARE_WRITE8_MEMBER(control_w);
+
+ u8 m_digit_data;
+ u8 m_led_select;
};
void intel02_state::machine_start()