summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/seibu_crtc.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/video/seibu_crtc.cpp
parent333bff8de64dfaeb98134000412796b4fdef970b (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/mame/video/seibu_crtc.cpp')
-rw-r--r--src/mame/video/seibu_crtc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/seibu_crtc.cpp b/src/mame/video/seibu_crtc.cpp
index 91a9bbd5292..5576f7e182a 100644
--- a/src/mame/video/seibu_crtc.cpp
+++ b/src/mame/video/seibu_crtc.cpp
@@ -269,7 +269,7 @@ WRITE16_MEMBER( seibu_crtc_device::layer_scroll_base_w)
// seibu_crtc_device - constructor
//-------------------------------------------------
-seibu_crtc_device::seibu_crtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+seibu_crtc_device::seibu_crtc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, SEIBU_CRTC, "Seibu CRT Controller", tag, owner, clock, "seibu_crtc", __FILE__),
device_memory_interface(mconfig, *this),
device_video_interface(mconfig, *this),
@@ -337,7 +337,7 @@ const address_space_config *seibu_crtc_device::memory_space_config(address_space
// read_word - read a word at the given address
//-------------------------------------------------
-inline UINT16 seibu_crtc_device::read_word(offs_t address)
+inline uint16_t seibu_crtc_device::read_word(offs_t address)
{
return space().read_word(address << 1);
}
@@ -346,7 +346,7 @@ inline UINT16 seibu_crtc_device::read_word(offs_t address)
// write_word - write a word at the given address
//-------------------------------------------------
-inline void seibu_crtc_device::write_word(offs_t address, UINT16 data)
+inline void seibu_crtc_device::write_word(offs_t address, uint16_t data)
{
space().write_word(address << 1, data);
}