summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vcs/harmony_melody.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vcs/harmony_melody.cpp')
-rw-r--r--src/devices/bus/vcs/harmony_melody.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/vcs/harmony_melody.cpp b/src/devices/bus/vcs/harmony_melody.cpp
index af5b09e0d8a..2940bd5cf4f 100644
--- a/src/devices/bus/vcs/harmony_melody.cpp
+++ b/src/devices/bus/vcs/harmony_melody.cpp
@@ -66,7 +66,7 @@ map:
const device_type A26_ROM_HARMONY = &device_creator<a26_rom_harmony_device>;
-a26_rom_harmony_device::a26_rom_harmony_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+a26_rom_harmony_device::a26_rom_harmony_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: a26_rom_f8_device(mconfig, A26_ROM_HARMONY, "Atari 2600 ROM Cart HARMONY/MELODY", tag, owner, clock, "a2600_harmony", __FILE__),
m_cpu(*this, "arm")
{
@@ -132,7 +132,7 @@ void a26_rom_harmony_device::check_bankswitch(offs_t offset)
READ8_MEMBER(a26_rom_harmony_device::read_rom)
{
- UINT8 retvalue = read8_r(space, offset + 0xc00); // banks start at 0xc00
+ uint8_t retvalue = read8_r(space, offset + 0xc00); // banks start at 0xc00
check_bankswitch(offset);