summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ms32.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ms32.h')
-rw-r--r--src/mame/includes/ms32.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/mame/includes/ms32.h b/src/mame/includes/ms32.h
index dc8e4f4ff7f..3a83a9f1a6c 100644
--- a/src/mame/includes/ms32.h
+++ b/src/mame/includes/ms32.h
@@ -28,34 +28,34 @@ public:
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch") { }
- optional_shared_ptr<UINT32> m_mainram;
- optional_shared_ptr<UINT32> m_roz_ctrl;
- optional_shared_ptr<UINT32> m_tx_scroll;
- optional_shared_ptr<UINT32> m_bg_scroll;
- optional_shared_ptr<UINT32> m_mahjong_input_select;
- optional_shared_ptr<UINT8> m_priram;
- optional_shared_ptr<UINT16> m_palram;
- optional_shared_ptr<UINT16> m_rozram;
- optional_shared_ptr<UINT16> m_lineram;
- optional_shared_ptr<UINT16> m_sprram;
- optional_shared_ptr<UINT16> m_txram;
- optional_shared_ptr<UINT16> m_bgram;
- optional_shared_ptr<UINT16> m_f1superb_extraram;
- std::unique_ptr<UINT8[]> m_nvram_8;
- UINT32 m_to_main;
- UINT16 m_irqreq;
+ optional_shared_ptr<uint32_t> m_mainram;
+ optional_shared_ptr<uint32_t> m_roz_ctrl;
+ optional_shared_ptr<uint32_t> m_tx_scroll;
+ optional_shared_ptr<uint32_t> m_bg_scroll;
+ optional_shared_ptr<uint32_t> m_mahjong_input_select;
+ optional_shared_ptr<uint8_t> m_priram;
+ optional_shared_ptr<uint16_t> m_palram;
+ optional_shared_ptr<uint16_t> m_rozram;
+ optional_shared_ptr<uint16_t> m_lineram;
+ optional_shared_ptr<uint16_t> m_sprram;
+ optional_shared_ptr<uint16_t> m_txram;
+ optional_shared_ptr<uint16_t> m_bgram;
+ optional_shared_ptr<uint16_t> m_f1superb_extraram;
+ std::unique_ptr<uint8_t[]> m_nvram_8;
+ uint32_t m_to_main;
+ uint16_t m_irqreq;
tilemap_t *m_tx_tilemap;
tilemap_t *m_roz_tilemap;
tilemap_t *m_bg_tilemap;
tilemap_t *m_bg_tilemap_alt;
- UINT32 m_tilemaplayoutcontrol;
+ uint32_t m_tilemaplayoutcontrol;
tilemap_t* m_extra_tilemap;
bitmap_ind16 m_temp_bitmap_tilemaps;
bitmap_ind16 m_temp_bitmap_sprites;
bitmap_ind8 m_temp_bitmap_sprites_pri;
int m_reverse_sprite_order;
int m_flipscreen;
- UINT32 m_brt[4];
+ uint32_t m_brt[4];
int m_brt_r;
int m_brt_g;
int m_brt_b;
@@ -106,13 +106,13 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_VIDEO_START(f1superb);
- UINT32 screen_update_ms32(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ms32(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
TIMER_DEVICE_CALLBACK_MEMBER(ms32_interrupt);
IRQ_CALLBACK_MEMBER(irq_callback);
void irq_init();
void irq_raise(int level);
void update_color(int color);
- void draw_sprites(bitmap_ind16 &bitmap, bitmap_ind8 &bitmap_pri, const rectangle &cliprect, UINT16 *sprram_top, size_t sprram_size, int gfxnum, int reverseorder);
+ void draw_sprites(bitmap_ind16 &bitmap, bitmap_ind8 &bitmap_pri, const rectangle &cliprect, uint16_t *sprram_top, size_t sprram_size, int gfxnum, int reverseorder);
void draw_roz(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect,int priority);
void configure_banks();
required_device<cpu_device> m_maincpu;