diff options
Diffstat (limited to 'src/mame/includes/pce.h')
-rw-r--r-- | src/mame/includes/pce.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/pce.h b/src/mame/includes/pce.h index 424e6a21135..9c07e62f602 100644 --- a/src/mame/includes/pce.h +++ b/src/mame/includes/pce.h @@ -48,8 +48,8 @@ public: { } required_device<h6280_device> m_maincpu; - required_shared_ptr<UINT8> m_cd_ram; - required_shared_ptr<UINT8> m_user_ram; + required_shared_ptr<uint8_t> m_cd_ram; + required_shared_ptr<uint8_t> m_user_ram; optional_device<huc6260_device> m_huc6260; required_device<pce_cart_slot_device> m_cartslot; optional_device<pce_cd_device> m_cd; @@ -58,12 +58,12 @@ public: required_ioport m_joy_type; required_ioport m_a_card; - UINT8 m_io_port_options; - UINT8 m_sys3_card; - UINT8 m_acard; + uint8_t m_io_port_options; + uint8_t m_sys3_card; + uint8_t m_acard; int m_joystick_port_select; int m_joystick_data_select; - UINT8 m_joy_6b_packet[5]; + uint8_t m_joy_6b_packet[5]; DECLARE_WRITE8_MEMBER(mess_pce_joystick_w); DECLARE_READ8_MEMBER(mess_pce_joystick_r); DECLARE_WRITE8_MEMBER(pce_cd_intf_w); @@ -73,7 +73,7 @@ public: DECLARE_DRIVER_INIT(sgx); DECLARE_DRIVER_INIT(tg16); DECLARE_DRIVER_INIT(mess_pce); - UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); DECLARE_MACHINE_START(pce); DECLARE_MACHINE_RESET(mess_pce); }; |