summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/deco222.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/deco222.cpp')
-rw-r--r--src/mame/machine/deco222.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/deco222.cpp b/src/mame/machine/deco222.cpp
index 1df8a720dd2..722a2f0e2ac 100644
--- a/src/mame/machine/deco222.cpp
+++ b/src/mame/machine/deco222.cpp
@@ -8,7 +8,7 @@
#include "deco222.h"
-deco_222_device::deco_222_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+deco_222_device::deco_222_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, DECO_222, "DECO 222", tag, owner, clock, "deco222", __FILE__)
{
}
@@ -25,14 +25,14 @@ void deco_222_device::device_reset()
static_cast<mi_decrypt *>(mintf)->had_written = false;
}
-UINT8 deco_222_device::mi_decrypt::read_sync(UINT16 adr)
+uint8_t deco_222_device::mi_decrypt::read_sync(uint16_t adr)
{
return BITSWAP8(direct->read_byte(adr) ,7,5,6,4,3,2,1,0);
}
-deco_c10707_device::deco_c10707_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+deco_c10707_device::deco_c10707_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, DECO_C10707, "DECO C10707", tag, owner, clock, "decoc10707", __FILE__)
{
}
@@ -49,7 +49,7 @@ void deco_c10707_device::device_reset()
static_cast<mi_decrypt *>(mintf)->had_written = false;
}
-UINT8 deco_c10707_device::mi_decrypt::read_sync(UINT16 adr)
+uint8_t deco_c10707_device::mi_decrypt::read_sync(uint16_t adr)
{
return BITSWAP8(direct->read_byte(adr) ,7,5,6,4,3,2,1,0);
}