summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/homez80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/homez80.cpp')
-rw-r--r--src/mame/drivers/homez80.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/homez80.cpp b/src/mame/drivers/homez80.cpp
index ea517b55d81..fdcb5341abb 100644
--- a/src/mame/drivers/homez80.cpp
+++ b/src/mame/drivers/homez80.cpp
@@ -35,12 +35,12 @@ public:
required_device<cpu_device> m_maincpu;
DECLARE_READ8_MEMBER( homez80_keyboard_r );
- required_shared_ptr<UINT8> m_p_videoram;
- UINT8* m_p_chargen;
+ required_shared_ptr<uint8_t> m_p_videoram;
+ uint8_t* m_p_chargen;
bool m_irq;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(homez80_interrupt);
};
@@ -223,16 +223,16 @@ void homez80_state::video_start()
m_p_chargen = memregion("chargen")->base();
}
-UINT32 homez80_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t homez80_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- UINT8 y,ra,chr,gfx;
- UINT16 sy=0,ma=0,x;
+ uint8_t y,ra,chr,gfx;
+ uint16_t sy=0,ma=0,x;
for (y = 0; y < 32; y++)
{
for (ra = 0; ra < 8; ra++)
{
- UINT16 *p = &bitmap.pix16(sy++, 44);
+ uint16_t *p = &bitmap.pix16(sy++, 44);
for (x = ma; x < ma+32; x++)
{