summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/beaminv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/beaminv.cpp')
-rw-r--r--src/mame/drivers/beaminv.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/beaminv.cpp b/src/mame/drivers/beaminv.cpp
index 4c78e8da6da..168f90d9dcd 100644
--- a/src/mame/drivers/beaminv.cpp
+++ b/src/mame/drivers/beaminv.cpp
@@ -68,13 +68,13 @@ public:
m_screen(*this, "screen") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
+ required_shared_ptr<uint8_t> m_videoram;
/* misc */
emu_timer *m_interrupt_timer;
/* input-related */
- UINT8 m_controller_select;
+ uint8_t m_controller_select;
/* devices */
required_device<cpu_device> m_maincpu;
@@ -84,7 +84,7 @@ public:
DECLARE_READ8_MEMBER(controller_r);
virtual void machine_start() override;
virtual void machine_reset() override;
- UINT32 screen_update_beaminv(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_beaminv(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(interrupt_callback);
void create_interrupt_timer();
void start_interrupt_timer();
@@ -173,7 +173,7 @@ void beaminv_state::machine_reset()
*
*************************************/
-UINT32 beaminv_state::screen_update_beaminv(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
+uint32_t beaminv_state::screen_update_beaminv(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
offs_t offs;
@@ -181,9 +181,9 @@ UINT32 beaminv_state::screen_update_beaminv(screen_device &screen, bitmap_rgb32
{
int i;
- UINT8 y = offs;
- UINT8 x = offs >> 8 << 3;
- UINT8 data = m_videoram[offs];
+ uint8_t y = offs;
+ uint8_t x = offs >> 8 << 3;
+ uint8_t data = m_videoram[offs];
for (i = 0; i < 8; i++)
{