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/mitchell.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/mitchell.cpp')
-rw-r--r-- | src/mame/drivers/mitchell.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/mitchell.cpp b/src/mame/drivers/mitchell.cpp index a92ee546a95..a3a0ad9a0b6 100644 --- a/src/mame/drivers/mitchell.cpp +++ b/src/mame/drivers/mitchell.cpp @@ -2175,11 +2175,11 @@ void mitchell_state::bootleg_decode() } -void mitchell_state::configure_banks(void (*decode)(UINT8 *src, UINT8 *dst, int size)) +void mitchell_state::configure_banks(void (*decode)(uint8_t *src, uint8_t *dst, int size)) { - UINT8 *src = memregion("maincpu")->base(); + uint8_t *src = memregion("maincpu")->base(); int size = memregion("maincpu")->bytes(); - UINT8 *dst = auto_alloc_array(machine(), UINT8, size); + uint8_t *dst = auto_alloc_array(machine(), uint8_t, size); decode(src, dst, size); m_bank1->configure_entries(0, 16, src + 0x10000, 0x4000); m_bank0d->set_base(dst); @@ -2295,8 +2295,8 @@ DRIVER_INIT_MEMBER(mitchell_state,mstworld) { /* descramble the program rom .. */ int len = memregion("maincpu")->bytes(); - std::vector<UINT8> source(len); - UINT8* dst = memregion("maincpu")->base() ; + std::vector<uint8_t> source(len); + uint8_t* dst = memregion("maincpu")->base() ; int x; static const int tablebank[]= |