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/machine/i8355.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/machine/i8355.h')
-rw-r--r-- | src/devices/machine/i8355.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/i8355.h b/src/devices/machine/i8355.h index 7337fa0193d..2acb4aff6a5 100644 --- a/src/devices/machine/i8355.h +++ b/src/devices/machine/i8355.h @@ -73,7 +73,7 @@ class i8355_device : public device_t, { public: // construction/destruction - i8355_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + i8355_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); template<class _Object> static devcb_base &set_in_pa_callback(device_t &device, _Object object) { return downcast<i8355_device &>(device).m_in_pa_cb.set_callback(object); } template<class _Object> static devcb_base &set_out_pa_callback(device_t &device, _Object object) { return downcast<i8355_device &>(device).m_out_pa_cb.set_callback(object); } @@ -93,8 +93,8 @@ protected: // device_memory_interface overrides virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override; - inline UINT8 read_port(int port); - inline void write_port(int port, UINT8 data); + inline uint8_t read_port(int port); + inline void write_port(int port, uint8_t data); private: devcb_read8 m_in_pa_cb; @@ -104,8 +104,8 @@ private: devcb_write8 m_out_pb_cb; // registers - UINT8 m_output[2]; // output latches - UINT8 m_ddr[2]; // DDR latches + uint8_t m_output[2]; // output latches + uint8_t m_ddr[2]; // DDR latches const address_space_config m_space_config; }; |