summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2eext80col.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2eext80col.cpp')
-rw-r--r--src/devices/bus/a2bus/a2eext80col.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/a2bus/a2eext80col.cpp b/src/devices/bus/a2bus/a2eext80col.cpp
index c3e9af48cac..1d2f6ae4e74 100644
--- a/src/devices/bus/a2bus/a2eext80col.cpp
+++ b/src/devices/bus/a2bus/a2eext80col.cpp
@@ -27,13 +27,13 @@ const device_type A2EAUX_EXT80COL = &device_creator<a2eaux_ext80col_device>;
// LIVE DEVICE
//**************************************************************************
-a2eaux_ext80col_device::a2eaux_ext80col_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+a2eaux_ext80col_device::a2eaux_ext80col_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, A2EAUX_EXT80COL, "Apple IIe Extended 80-Column Card", tag, owner, clock, "a2eext80", __FILE__),
device_a2eauxslot_card_interface(mconfig, *this)
{
}
-a2eaux_ext80col_device::a2eaux_ext80col_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
+a2eaux_ext80col_device::a2eaux_ext80col_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source) :
device_t(mconfig, type, name, tag, owner, clock, shortname, source),
device_a2eauxslot_card_interface(mconfig, *this)
{
@@ -54,22 +54,22 @@ void a2eaux_ext80col_device::device_reset()
{
}
-UINT8 a2eaux_ext80col_device::read_auxram(UINT16 offset)
+uint8_t a2eaux_ext80col_device::read_auxram(uint16_t offset)
{
return m_ram[offset];
}
-void a2eaux_ext80col_device::write_auxram(UINT16 offset, UINT8 data)
+void a2eaux_ext80col_device::write_auxram(uint16_t offset, uint8_t data)
{
m_ram[offset] = data;
}
-UINT8 *a2eaux_ext80col_device::get_vram_ptr()
+uint8_t *a2eaux_ext80col_device::get_vram_ptr()
{
return &m_ram[0];
}
-UINT8 *a2eaux_ext80col_device::get_auxbank_ptr()
+uint8_t *a2eaux_ext80col_device::get_auxbank_ptr()
{
return &m_ram[0];
}