summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pc1401.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pc1401.h')
-rw-r--r--src/mame/includes/pc1401.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/pc1401.h b/src/mame/includes/pc1401.h
index 0ce077476ad..1c76287a808 100644
--- a/src/mame/includes/pc1401.h
+++ b/src/mame/includes/pc1401.h
@@ -32,13 +32,13 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
- UINT8 m_portc;
- UINT8 m_outa;
- UINT8 m_outb;
+ uint8_t m_portc;
+ uint8_t m_outa;
+ uint8_t m_outb;
int m_power;
- UINT8 m_reg[0x100];
+ uint8_t m_reg[0x100];
DECLARE_DRIVER_INIT(pc1401);
- UINT32 screen_update_pc1401(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_pc1401(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_READ_LINE_MEMBER(pc1401_reset);
DECLARE_READ_LINE_MEMBER(pc1401_brk);
DECLARE_WRITE8_MEMBER(pc1401_outa);