summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/pp01.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pp01.h')
-rw-r--r--src/mame/includes/pp01.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/pp01.h b/src/mame/includes/pp01.h
index e8e15fce57e..055f0b3bd0b 100644
--- a/src/mame/includes/pp01.h
+++ b/src/mame/includes/pp01.h
@@ -33,10 +33,10 @@ public:
required_device<pit8253_device> m_pit;
required_device<speaker_sound_device> m_speaker;
required_device<ram_device> m_ram;
- UINT8 m_video_scroll;
- UINT8 m_memory_block[16];
- UINT8 m_video_write_mode;
- UINT8 m_key_line;
+ uint8_t m_video_scroll;
+ uint8_t m_memory_block[16];
+ uint8_t m_video_write_mode;
+ uint8_t m_key_line;
DECLARE_WRITE8_MEMBER(pp01_video_write_mode_w);
DECLARE_WRITE8_MEMBER(pp01_video_r_1_w);
DECLARE_WRITE8_MEMBER(pp01_video_g_1_w);
@@ -50,7 +50,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(pp01);
- UINT32 screen_update_pp01(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_pp01(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(pp01_pit_out0);
DECLARE_WRITE_LINE_MEMBER(pp01_pit_out1);
DECLARE_READ8_MEMBER(pp01_8255_porta_r);
@@ -59,8 +59,8 @@ public:
DECLARE_WRITE8_MEMBER(pp01_8255_portb_w);
DECLARE_WRITE8_MEMBER(pp01_8255_portc_w);
DECLARE_READ8_MEMBER(pp01_8255_portc_r);
- void pp01_video_w(UINT8 block,UINT16 offset,UINT8 data,UINT8 part);
- void pp01_set_memory(UINT8 block, UINT8 data);
+ void pp01_video_w(uint8_t block,uint16_t offset,uint8_t data,uint8_t part);
+ void pp01_set_memory(uint8_t block, uint8_t data);
};
#endif