summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hk68v10.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/drivers/hk68v10.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/drivers/hk68v10.cpp')
-rw-r--r--src/mame/drivers/hk68v10.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/hk68v10.cpp b/src/mame/drivers/hk68v10.cpp
index 0020375ea63..849c0576f8c 100644
--- a/src/mame/drivers/hk68v10.cpp
+++ b/src/mame/drivers/hk68v10.cpp
@@ -214,8 +214,8 @@ required_device<cpu_device> m_maincpu;
required_device<scc8530_device> m_sccterm;
// Pointer to System ROMs needed by bootvect_r and masking RAM buffer for post reset accesses
- UINT16 *m_sysrom;
- UINT16 m_sysram[4];
+ uint16_t *m_sysrom;
+ uint16_t m_sysram[4];
};
static ADDRESS_MAP_START (hk68v10_mem, AS_PROGRAM, 16, hk68v10_state)
@@ -244,7 +244,7 @@ void hk68v10_state::machine_start ()
LOG(("%s\n", FUNCNAME));
/* Setup pointer to bootvector in ROM for bootvector handler bootvect_r */
- m_sysrom = (UINT16*)(memregion ("maincpu")->base () + 0x0fc0000);
+ m_sysrom = (uint16_t*)(memregion ("maincpu")->base () + 0x0fc0000);
}
/* Support CPU resets
@@ -259,7 +259,7 @@ void hk68v10_state::machine_reset ()
/* Reset pointer to bootvector in ROM for bootvector handler bootvect_r */
if (m_sysrom == &m_sysram[0]) /* Condition needed because memory map is not setup first time */
- m_sysrom = (UINT16*)(memregion ("maincpu")->base () + 0x0fc0000);
+ m_sysrom = (uint16_t*)(memregion ("maincpu")->base () + 0x0fc0000);
}
/* Boot vector handler, the PCB hardwires the first 8 bytes from 0xfc0000 to 0x0 at reset*/
@@ -285,7 +285,7 @@ WRITE16_MEMBER (hk68v10_state::bootvect_w){
/* Dummy VME access methods until the VME bus device is ready for use */
READ16_MEMBER (hk68v10_state::vme_a24_r){
LOG(("%s\n", FUNCNAME));
- return (UINT16) 0;
+ return (uint16_t) 0;
}
WRITE16_MEMBER (hk68v10_state::vme_a24_w){
@@ -294,7 +294,7 @@ WRITE16_MEMBER (hk68v10_state::vme_a24_w){
READ16_MEMBER (hk68v10_state::vme_a16_r){
LOG(("%s\n", FUNCNAME));
- return (UINT16) 0;
+ return (uint16_t) 0;
}
WRITE16_MEMBER (hk68v10_state::vme_a16_w){