summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fp6000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fp6000.cpp')
-rw-r--r--src/mame/drivers/fp6000.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/fp6000.cpp b/src/mame/drivers/fp6000.cpp
index fba366c95d9..a2fd2098fa6 100644
--- a/src/mame/drivers/fp6000.cpp
+++ b/src/mame/drivers/fp6000.cpp
@@ -36,13 +36,13 @@ public:
m_palette(*this, "palette")
{ }
- UINT8 *m_char_rom;
- required_shared_ptr<UINT16> m_gvram;
- required_shared_ptr<UINT16> m_vram;
- UINT8 m_crtc_vreg[0x100],m_crtc_index;
+ uint8_t *m_char_rom;
+ required_shared_ptr<uint16_t> m_gvram;
+ required_shared_ptr<uint16_t> m_vram;
+ uint8_t m_crtc_vreg[0x100],m_crtc_index;
struct {
- UINT16 cmd;
+ uint16_t cmd;
}m_key;
DECLARE_READ8_MEMBER(fp6000_pcg_r);
DECLARE_WRITE8_MEMBER(fp6000_pcg_w);
@@ -56,7 +56,7 @@ public:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_fp6000(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_fp6000(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<mc6845_device>m_crtc;
required_device<gfxdecode_device> m_gfxdecode;
@@ -85,12 +85,12 @@ void fp6000_state::video_start()
#define mc6845_update_addr (((m_crtc_vreg[0x12]<<8) & 0x3f00) | (m_crtc_vreg[0x13] & 0xff))
-UINT32 fp6000_state::screen_update_fp6000(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t fp6000_state::screen_update_fp6000(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
int x,y;
int xi,yi;
- UINT8 *gfx_rom = memregion("pcg")->base();
- UINT32 count;
+ uint8_t *gfx_rom = memregion("pcg")->base();
+ uint32_t count;
count = 0;