diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/avigo.cpp | |
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/mame/drivers/avigo.cpp')
-rw-r--r-- | src/mame/drivers/avigo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/avigo.cpp b/src/mame/drivers/avigo.cpp index 7d3c3c0677d..99adc8b5122 100644 --- a/src/mame/drivers/avigo.cpp +++ b/src/mame/drivers/avigo.cpp @@ -181,7 +181,7 @@ ADDRESS_MAP_END READ8_MEMBER(avigo_state::key_data_read_r) { - UINT8 data = 0x0f; + uint8_t data = 0x0f; if (!(m_key_line & 0x01)) { @@ -370,7 +370,7 @@ WRITE8_MEMBER(avigo_state::ad_control_status_w) READ8_MEMBER(avigo_state::ad_data_r) { - UINT8 data = 0; + uint8_t data = 0; /* original */ @@ -689,7 +689,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(avigo_state::avigo_1hz_timer) QUICKLOAD_LOAD_MEMBER( avigo_state,avigo) { const char *systemname = machine().system().name; - UINT32 first_app_page = (0x50000>>14); + uint32_t first_app_page = (0x50000>>14); int app_page; // german and spanish language are 4 pages bigger than other @@ -717,7 +717,7 @@ QUICKLOAD_LOAD_MEMBER( avigo_state,avigo) // if there is the required free space installs the application if ((app_page + (image.length()>>14)) < 0x40) { - logerror("Application loaded at 0x%05x-0x%05x\n", app_page<<14, (app_page<<14) + (UINT32)image.length()); + logerror("Application loaded at 0x%05x-0x%05x\n", app_page<<14, (app_page<<14) + (uint32_t)image.length()); // copy app file into flash memory image.fread(m_flash1->base() + (app_page<<14), image.length()); |