diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/video/huc6272.h | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/video/huc6272.h')
-rw-r--r-- | src/devices/video/huc6272.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/devices/video/huc6272.h b/src/devices/video/huc6272.h index 27bd14636e2..9a2e173f919 100644 --- a/src/devices/video/huc6272.h +++ b/src/devices/video/huc6272.h @@ -32,7 +32,7 @@ class huc6272_device : public device_t, { public: // construction/destruction - huc6272_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + huc6272_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); // I/O operations DECLARE_WRITE32_MEMBER( write ); @@ -47,19 +47,19 @@ protected: virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override; private: - inline UINT32 read_dword(offs_t address); - inline void write_dword(offs_t address, UINT32 data); - UINT8 m_register; - UINT32 m_kram_addr_r, m_kram_addr_w; - UINT16 m_kram_inc_r,m_kram_inc_w; - UINT8 m_kram_page_r,m_kram_page_w; - UINT32 m_page_setting; - UINT8 m_bgmode[4]; + inline uint32_t read_dword(offs_t address); + inline void write_dword(offs_t address, uint32_t data); + uint8_t m_register; + uint32_t m_kram_addr_r, m_kram_addr_w; + uint16_t m_kram_inc_r,m_kram_inc_w; + uint8_t m_kram_page_r,m_kram_page_w; + uint32_t m_page_setting; + uint8_t m_bgmode[4]; struct{ - UINT8 addr; - UINT8 ctrl; - UINT16 data[16]; + uint8_t addr; + uint8_t ctrl; + uint16_t data[16]; }m_micro_prg; const address_space_config m_space_config; |