summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/homedata.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/homedata.h')
-rw-r--r--src/mame/includes/homedata.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/homedata.h b/src/mame/includes/homedata.h
index f2062f7eda3..9803481fa4c 100644
--- a/src/mame/includes/homedata.h
+++ b/src/mame/includes/homedata.h
@@ -23,19 +23,19 @@ public:
}
/* memory pointers */
- optional_shared_ptr<UINT8> m_vreg;
- required_shared_ptr<UINT8> m_videoram;
+ optional_shared_ptr<uint8_t> m_vreg;
+ required_shared_ptr<uint8_t> m_videoram;
/* video-related */
tilemap_t *m_bg_tilemap[2][4];
int m_visible_page;
int m_priority;
- UINT8 m_reikaids_which;
+ uint8_t m_reikaids_which;
int m_flipscreen;
- UINT8 m_gfx_bank[2]; // pteacher only uses the first one
- UINT8 m_blitter_bank;
+ uint8_t m_gfx_bank[2]; // pteacher only uses the first one
+ uint8_t m_blitter_bank;
int m_blitter_param_count;
- UINT8 m_blitter_param[4]; /* buffers last 4 writes to 0x8006 */
+ uint8_t m_blitter_param[4]; /* buffers last 4 writes to 0x8006 */
/* misc */
@@ -57,7 +57,7 @@ public:
optional_device<generic_latch_8_device> m_soundlatch; // mrokumei
optional_device<sn76489a_device> m_sn; // mrokumei and pteacher
- UINT8 m_prot_data;
+ uint8_t m_prot_data;
DECLARE_READ8_MEMBER(mrokumei_keyboard_r);
DECLARE_WRITE8_MEMBER(mrokumei_keyboard_select_w);
DECLARE_READ8_MEMBER(mrokumei_sound_io_r);
@@ -135,10 +135,10 @@ public:
DECLARE_VIDEO_START(mirderby);
DECLARE_PALETTE_INIT(mirderby);
DECLARE_VIDEO_START(lemnangl);
- UINT32 screen_update_mrokumei(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_reikaids(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_pteacher(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_mirderby(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_mrokumei(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_reikaids(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_pteacher(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_mirderby(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void screen_eof_homedata(screen_device &screen, bool state);
INTERRUPT_GEN_MEMBER(homedata_irq);
INTERRUPT_GEN_MEMBER(upd7807_irq);