summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/cuda.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/machine/cuda.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/machine/cuda.cpp')
-rw-r--r--src/mame/machine/cuda.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/cuda.cpp b/src/mame/machine/cuda.cpp
index b42b8ee11f3..c578e6a3181 100644
--- a/src/mame/machine/cuda.cpp
+++ b/src/mame/machine/cuda.cpp
@@ -108,7 +108,7 @@ const tiny_rom_entry *cuda_device::device_rom_region() const
// LIVE DEVICE
//**************************************************************************
-void cuda_device::send_port(address_space &space, UINT8 offset, UINT8 data)
+void cuda_device::send_port(address_space &space, uint8_t offset, uint8_t data)
{
// printf("PORT %c write %02x (DDR = %02x) (PC=%x)\n", 'A' + offset, data, ddrs[offset], m_maincpu->pc());
@@ -211,7 +211,7 @@ WRITE8_MEMBER( cuda_device::ddr_w )
READ8_MEMBER( cuda_device::ports_r )
{
- UINT8 incoming = 0;
+ uint8_t incoming = 0;
switch (offset)
{
@@ -382,7 +382,7 @@ WRITE8_MEMBER( cuda_device::pram_w )
// cuda_device - constructor
//-------------------------------------------------
-cuda_device::cuda_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+cuda_device::cuda_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, CUDA, "Apple Cuda", tag, owner, clock, "cuda", __FILE__),
device_nvram_interface(mconfig, *this),
write_reset(*this),
@@ -440,7 +440,7 @@ void cuda_device::device_start()
save_item(NAME(pram));
save_item(NAME(disk_pram));
- UINT8 *rom = device().machine().root_device().memregion(device().subtag(CUDA_CPU_TAG).c_str())->base();
+ uint8_t *rom = device().machine().root_device().memregion(device().subtag(CUDA_CPU_TAG).c_str())->base();
if (rom)
{