summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/coco3.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/coco3.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/coco3.cpp')
-rw-r--r--src/mame/machine/coco3.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/coco3.cpp b/src/mame/machine/coco3.cpp
index 40624853dec..dab68c0761e 100644
--- a/src/mame/machine/coco3.cpp
+++ b/src/mame/machine/coco3.cpp
@@ -65,7 +65,7 @@ WRITE8_MEMBER( coco3_state::ff20_write )
READ8_MEMBER( coco3_state::ff40_read )
{
- UINT8 result = 0x00;
+ uint8_t result = 0x00;
if (m_gime->spare_chip_select_enabled())
result = coco_state::ff40_read(space, offset, mem_mask);
return result;
@@ -111,7 +111,7 @@ bool coco3_state::irq_get_line(void)
// update_keyboard_input
//-------------------------------------------------
-void coco3_state::update_keyboard_input(UINT8 value, UINT8 z)
+void coco3_state::update_keyboard_input(uint8_t value, uint8_t z)
{
coco_state::update_keyboard_input(value, z);
m_gime->set_il1(value == 0xFF);
@@ -135,7 +135,7 @@ void coco3_state::cart_w(bool state)
// update_cart_base
//-------------------------------------------------
-void coco3_state::update_cart_base(UINT8 *cart_base)
+void coco3_state::update_cart_base(uint8_t *cart_base)
{
m_gime->update_cart_rom();
}
@@ -146,7 +146,7 @@ void coco3_state::update_cart_base(UINT8 *cart_base)
// screen_update
//-------------------------------------------------
-UINT32 coco3_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
+uint32_t coco3_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
bool result;
if (!strcmp(screen.tag(), ":" COMPOSITE_SCREEN_TAG))