summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/ep64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ep64.cpp')
-rw-r--r--src/mame/drivers/ep64.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/ep64.cpp b/src/mame/drivers/ep64.cpp
index 53e4a23b9c1..a1b9c94f4c2 100644
--- a/src/mame/drivers/ep64.cpp
+++ b/src/mame/drivers/ep64.cpp
@@ -209,7 +209,7 @@ public:
DECLARE_READ8_MEMBER( rd1_r );
DECLARE_WRITE8_MEMBER( wr2_w );
- UINT8 m_key;
+ uint8_t m_key;
DECLARE_WRITE_LINE_MEMBER(write_centronics_busy);
int m_centronics_busy;
@@ -227,7 +227,7 @@ public:
READ8_MEMBER( ep64_state::rd0_r )
{
- UINT8 data = 0xff;
+ uint8_t data = 0xff;
if (m_key < 10)
{
@@ -300,7 +300,7 @@ READ8_MEMBER( ep64_state::rd1_r )
*/
- UINT8 data = 0;
+ uint8_t data = 0;
// printer
data |= m_centronics_busy << 3;