summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/msx_s1985.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/msx_s1985.h')
-rw-r--r--src/mame/machine/msx_s1985.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/msx_s1985.h b/src/mame/machine/msx_s1985.h
index 0a741ce5071..352e9a22692 100644
--- a/src/mame/machine/msx_s1985.h
+++ b/src/mame/machine/msx_s1985.h
@@ -17,17 +17,17 @@ extern const device_type MSX_S1985;
class msx_s1985_device : public msx_switched_device
{
public:
- msx_s1985_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ msx_s1985_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- virtual UINT8 get_id() override;
+ virtual uint8_t get_id() override;
virtual DECLARE_READ8_MEMBER(io_read) override;
virtual DECLARE_WRITE8_MEMBER(io_write) override;
private:
- UINT8 m_6_1;
- UINT8 m_6_2;
- UINT8 m_7;
+ uint8_t m_6_1;
+ uint8_t m_6_2;
+ uint8_t m_7;
};
#endif