summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/abcbus/ram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/abcbus/ram.cpp')
-rw-r--r--src/devices/bus/abcbus/ram.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/abcbus/ram.cpp b/src/devices/bus/abcbus/ram.cpp
index a91e29bd9c7..6ff3935b4f7 100644
--- a/src/devices/bus/abcbus/ram.cpp
+++ b/src/devices/bus/abcbus/ram.cpp
@@ -26,7 +26,7 @@ const device_type ABC80_16KB_RAM_CARD = &device_creator<abc80_16kb_ram_card_t>;
// abc80_16kb_ram_card_t - constructor
//-------------------------------------------------
-abc80_16kb_ram_card_t::abc80_16kb_ram_card_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+abc80_16kb_ram_card_t::abc80_16kb_ram_card_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, ABC80_16KB_RAM_CARD, "ABC 80 16KB RAM card", tag, owner, clock, "abc80_16kb", __FILE__),
device_abcbus_card_interface(mconfig, *this),
m_ram(*this, "ram")
@@ -53,9 +53,9 @@ void abc80_16kb_ram_card_t::device_start()
// abcbus_xmemfl -
//-------------------------------------------------
-UINT8 abc80_16kb_ram_card_t::abcbus_xmemfl(offs_t offset)
+uint8_t abc80_16kb_ram_card_t::abcbus_xmemfl(offs_t offset)
{
- UINT8 data = 0xff;
+ uint8_t data = 0xff;
if (offset >= 0x8000 && offset < 0xc000)
{
@@ -70,7 +70,7 @@ UINT8 abc80_16kb_ram_card_t::abcbus_xmemfl(offs_t offset)
// abcbus_xmemw -
//-------------------------------------------------
-void abc80_16kb_ram_card_t::abcbus_xmemw(offs_t offset, UINT8 data)
+void abc80_16kb_ram_card_t::abcbus_xmemw(offs_t offset, uint8_t data)
{
if (offset >= 0x8000 && offset < 0xc000)
{