diff options
Diffstat (limited to 'src/mame/machine/dec0.cpp')
-rw-r--r-- | src/mame/machine/dec0.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/dec0.cpp b/src/mame/machine/dec0.cpp index cd8d501efda..7a1c48ee654 100644 --- a/src/mame/machine/dec0.cpp +++ b/src/mame/machine/dec0.cpp @@ -346,7 +346,7 @@ WRITE16_MEMBER(dec0_state::robocop_68000_share_w) void dec0_state::h6280_decrypt(const char *cputag) { int i; - UINT8 *RAM = memregion(cputag)->base(); + uint8_t *RAM = memregion(cputag)->base(); /* Read each byte, decrypt it */ for (i = 0x00000; i < 0x10000; i++) @@ -355,7 +355,7 @@ void dec0_state::h6280_decrypt(const char *cputag) DRIVER_INIT_MEMBER(dec0_state,hippodrm) { - UINT8 *RAM = memregion("sub")->base(); + uint8_t *RAM = memregion("sub")->base(); m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x180000, 0x18003f, read16_delegate(FUNC(dec0_state::hippodrm_68000_share_r),this), write16_delegate(FUNC(dec0_state::hippodrm_68000_share_w),this)); m_maincpu->space(AS_PROGRAM).install_write_handler(0xffc800, 0xffcfff, write16_delegate(FUNC(dec0_state::sprite_mirror_w),this)); @@ -373,7 +373,7 @@ DRIVER_INIT_MEMBER(dec0_state,hippodrm) DRIVER_INIT_MEMBER(dec0_state,slyspy) { - UINT8 *RAM = memregion("audiocpu")->base(); + uint8_t *RAM = memregion("audiocpu")->base(); h6280_decrypt("audiocpu"); /* Slyspy sound cpu has some protection */ |