summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pc_kbd/pcxt83.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pc_kbd/pcxt83.h')
-rw-r--r--src/devices/bus/pc_kbd/pcxt83.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/pc_kbd/pcxt83.h b/src/devices/bus/pc_kbd/pcxt83.h
index 47e23205e62..672e67f406c 100644
--- a/src/devices/bus/pc_kbd/pcxt83.h
+++ b/src/devices/bus/pc_kbd/pcxt83.h
@@ -29,7 +29,7 @@ class ibm_pc_xt_83_keyboard_device : public device_t,
{
public:
// construction/destruction
- ibm_pc_xt_83_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ ibm_pc_xt_83_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual const tiny_rom_entry *device_rom_region() const override;
@@ -56,9 +56,9 @@ private:
required_device<cpu_device> m_maincpu;
required_ioport_array<12> m_md;
- UINT8 m_bus;
- UINT8 m_p1;
- UINT8 m_p2;
+ uint8_t m_bus;
+ uint8_t m_p1;
+ uint8_t m_p2;
int m_sense;
int m_q;
};