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/jack.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/jack.cpp')
-rw-r--r-- | src/mame/drivers/jack.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/jack.cpp b/src/mame/drivers/jack.cpp index 3e0c7c6c499..fa3c4e70489 100644 --- a/src/mame/drivers/jack.cpp +++ b/src/mame/drivers/jack.cpp @@ -125,7 +125,7 @@ READ8_MEMBER(jack_state::striv_question_r) // Read the actual byte from question roms else { - UINT8 *ROM = memregion("user1")->base(); + uint8_t *ROM = memregion("user1")->base(); int real_address; real_address = m_question_address | (offset & 0x3f0) | m_remap_address[offset & 0x0f]; @@ -1471,12 +1471,12 @@ DRIVER_INIT_MEMBER(jack_state,zzyzzyxx) void jack_state::treahunt_decode( ) { - UINT8 *rom = memregion("maincpu")->base(); + uint8_t *rom = memregion("maincpu")->base(); /* Thanks to Mike Balfour for helping out with the decryption */ for (int A = 0; A < 0x4000; A++) { - UINT8 data = rom[A]; + uint8_t data = rom[A]; if (A & 0x1000) { @@ -1528,7 +1528,7 @@ DRIVER_INIT_MEMBER(jack_state,loverboy) code, the protection device is disabled or changes behaviour via writes at 0xf000 and 0xf008. -AS */ - UINT8 *ROM = memregion("maincpu")->base(); + uint8_t *ROM = memregion("maincpu")->base(); ROM[0x13] = 0x01; ROM[0x12] = 0x9d; @@ -1538,8 +1538,8 @@ DRIVER_INIT_MEMBER(jack_state,loverboy) DRIVER_INIT_MEMBER(jack_state,striv) { - UINT8 *ROM = memregion("maincpu")->base(); - UINT8 data; + uint8_t *ROM = memregion("maincpu")->base(); + uint8_t data; int A; /* decrypt program rom */ |