diff options
Diffstat (limited to 'src/mame/includes/mcr.h')
-rw-r--r-- | src/mame/includes/mcr.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/mcr.h b/src/mame/includes/mcr.h index 46a6f7be17c..7ceb376c492 100644 --- a/src/mame/includes/mcr.h +++ b/src/mame/includes/mcr.h @@ -46,9 +46,9 @@ public: required_device<z80_device> m_maincpu; optional_device<cpu_device> m_ipu; required_device<watchdog_timer_device> m_watchdog; - optional_shared_ptr<UINT8> m_spriteram; - optional_shared_ptr<UINT8> m_videoram; - optional_shared_ptr<UINT8> m_paletteram; + optional_shared_ptr<uint8_t> m_spriteram; + optional_shared_ptr<uint8_t> m_videoram; + optional_shared_ptr<uint8_t> m_paletteram; optional_device<z80dart_device> m_sio; optional_device<midway_ssio_device> m_ssio; @@ -119,7 +119,7 @@ public: DECLARE_MACHINE_RESET(mcr); DECLARE_VIDEO_START(mcr); DECLARE_MACHINE_START(nflfoot); - UINT32 screen_update_mcr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_mcr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); TIMER_CALLBACK_MEMBER(ipu_watchdog_reset); TIMER_DEVICE_CALLBACK_MEMBER(dpoker_hopper_callback); TIMER_DEVICE_CALLBACK_MEMBER(dpoker_coin_in_callback); @@ -138,15 +138,15 @@ public: extern const z80_daisy_config mcr_daisy_chain[]; extern const z80_daisy_config mcr_ipu_daisy_chain[]; -extern UINT8 mcr_cocktail_flip; +extern uint8_t mcr_cocktail_flip; extern const gfx_layout mcr_bg_layout; extern const gfx_layout mcr_sprite_layout; -extern UINT32 mcr_cpu_board; -extern UINT32 mcr_sprite_board; +extern uint32_t mcr_cpu_board; +extern uint32_t mcr_sprite_board; /*----------- defined in video/mcr.c -----------*/ -extern INT8 mcr12_sprite_xoffs; -extern INT8 mcr12_sprite_xoffs_flip; +extern int8_t mcr12_sprite_xoffs; +extern int8_t mcr12_sprite_xoffs_flip; |