summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/kr2376.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/machine/kr2376.h
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
Diffstat (limited to 'src/emu/machine/kr2376.h')
-rw-r--r--src/emu/machine/kr2376.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/kr2376.h b/src/emu/machine/kr2376.h
index 3f7d9fe696c..dad802f94e6 100644
--- a/src/emu/machine/kr2376.h
+++ b/src/emu/machine/kr2376.h
@@ -59,7 +59,7 @@ public:
~kr2376_device() {}
template<class _Object> static devcb2_base &set_strobe_wr_callback(device_t &device, _Object object) { return downcast<kr2376_device &>(device).m_write_strobe.set_callback(object); }
-
+
/* keyboard data */
DECLARE_READ8_MEMBER( data_r );
@@ -74,7 +74,7 @@ protected:
virtual void device_start();
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
virtual ioport_constructor device_input_ports() const;
-
+
private:
// internal state
int m_pins[41];
@@ -91,12 +91,12 @@ private:
/* timers */
emu_timer *m_scan_timer; /* keyboard scan timer */
devcb2_write_line m_write_strobe;
-
+
enum
{
TIMER_SCAN_TICK
};
-
+
void change_output_lines();
void clock_scan_counters();
void detect_keypress();