summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/ngen_kb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/ngen_kb.h')
-rw-r--r--src/mess/machine/ngen_kb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/machine/ngen_kb.h b/src/mess/machine/ngen_kb.h
index 09efc237666..2fdbfb36e36 100644
--- a/src/mess/machine/ngen_kb.h
+++ b/src/mess/machine/ngen_kb.h
@@ -10,7 +10,7 @@ class ngen_keyboard_device : public serial_keyboard_device
public:
ngen_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual ioport_constructor device_input_ports() const;
- virtual DECLARE_WRITE_LINE_MEMBER( input_txd ) {/* printf("TX: %i\n",state);*/ device_serial_interface::rx_w(state); }
+ virtual DECLARE_WRITE_LINE_MEMBER( input_txd ) { device_serial_interface::rx_w(state); }
protected:
virtual void device_start();
@@ -23,6 +23,7 @@ private:
void write(UINT8 data);
bool m_keys_down;
+ bool m_last_reset;
};
extern const device_type NGEN_KEYBOARD;