diff options
Diffstat (limited to 'src/mame/includes/tceptor.h')
-rw-r--r-- | src/mame/includes/tceptor.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/mame/includes/tceptor.h b/src/mame/includes/tceptor.h index 26f5a122dc3..d88ffc34e6c 100644 --- a/src/mame/includes/tceptor.h +++ b/src/mame/includes/tceptor.h @@ -20,30 +20,30 @@ public: m_gfxdecode(*this, "gfxdecode"), m_palette(*this, "palette") { } - UINT8 m_m6809_irq_enable; - UINT8 m_m68k_irq_enable; - UINT8 m_mcu_irq_enable; + uint8_t m_m6809_irq_enable; + uint8_t m_m68k_irq_enable; + uint8_t m_mcu_irq_enable; required_device<cpu_device> m_maincpu; required_device<namco_cus30_device> m_cus30; - required_shared_ptr<UINT8> m_tile_ram; - required_shared_ptr<UINT8> m_tile_attr; - required_shared_ptr<UINT8> m_bg_ram; - required_shared_ptr<UINT8> m_m68k_shared_ram; - required_shared_ptr<UINT16> m_sprite_ram; + required_shared_ptr<uint8_t> m_tile_ram; + required_shared_ptr<uint8_t> m_tile_attr; + required_shared_ptr<uint8_t> m_bg_ram; + required_shared_ptr<uint8_t> m_m68k_shared_ram; + required_shared_ptr<uint16_t> m_sprite_ram; int m_sprite16; int m_sprite32; int m_bg; tilemap_t *m_tx_tilemap; tilemap_t *m_bg1_tilemap; tilemap_t *m_bg2_tilemap; - INT32 m_bg1_scroll_x; - INT32 m_bg1_scroll_y; - INT32 m_bg2_scroll_x; - INT32 m_bg2_scroll_y; + int32_t m_bg1_scroll_x; + int32_t m_bg1_scroll_y; + int32_t m_bg2_scroll_x; + int32_t m_bg2_scroll_y; bitmap_ind16 m_temp_bitmap; - std::unique_ptr<UINT16[]> m_sprite_ram_buffered; - std::unique_ptr<UINT8[]> m_decoded_16; - std::unique_ptr<UINT8[]> m_decoded_32; + std::unique_ptr<uint16_t[]> m_sprite_ram_buffered; + std::unique_ptr<uint8_t[]> m_decoded_16; + std::unique_ptr<uint8_t[]> m_decoded_32; int m_is_mask_spr[1024/16]; DECLARE_READ8_MEMBER(m68k_shared_r); DECLARE_WRITE8_MEMBER(m68k_shared_w); @@ -75,9 +75,9 @@ public: virtual void machine_reset() override; virtual void video_start() override; DECLARE_PALETTE_INIT(tceptor); - UINT32 screen_update_tceptor_2d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_tceptor_3d_left(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_tceptor_3d_right(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_tceptor_2d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_tceptor_3d_left(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_tceptor_3d_right(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void screen_eof_tceptor(screen_device &screen, bool state); INTERRUPT_GEN_MEMBER(m6809_vb_interrupt); INTERRUPT_GEN_MEMBER(m68k_vb_interrupt); @@ -88,6 +88,6 @@ public: void decode_sprite16(const char * region); void decode_sprite32(const char * region); void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int sprite_priority); - inline UINT8 fix_input0(UINT8 in1, UINT8 in2); - inline UINT8 fix_input1(UINT8 in1, UINT8 in2); + inline uint8_t fix_input0(uint8_t in1, uint8_t in2); + inline uint8_t fix_input1(uint8_t in1, uint8_t in2); }; |