summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pv9234.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pv9234.cpp')
-rw-r--r--src/mame/drivers/pv9234.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/pv9234.cpp b/src/mame/drivers/pv9234.cpp
index 026ac632927..233b7b5c177 100644
--- a/src/mame/drivers/pv9234.cpp
+++ b/src/mame/drivers/pv9234.cpp
@@ -35,10 +35,10 @@ public:
DECLARE_WRITE32_MEMBER(debug_w);
DECLARE_WRITE32_MEMBER(debug1_w);
DECLARE_WRITE32_MEMBER(debug2_w);
- required_shared_ptr<UINT32> m_p_ram;
+ required_shared_ptr<uint32_t> m_p_ram;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_pv9234(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_pv9234(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
};
@@ -76,7 +76,7 @@ WRITE32_MEMBER( pv9234_state::debug_w )
WRITE32_MEMBER( pv9234_state::debug1_w )
{
- UINT8 i,j;
+ uint8_t i,j;
if (data)
{
for (i = 0; i < 4; i++)
@@ -131,7 +131,7 @@ void pv9234_state::video_start()
{
}
-UINT32 pv9234_state::screen_update_pv9234(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t pv9234_state::screen_update_pv9234(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return 0;
}