summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99_peb/ti_32kmem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99_peb/ti_32kmem.cpp')
-rw-r--r--src/devices/bus/ti99_peb/ti_32kmem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99_peb/ti_32kmem.cpp b/src/devices/bus/ti99_peb/ti_32kmem.cpp
index 02e147e33df..16f2d0ccef2 100644
--- a/src/devices/bus/ti99_peb/ti_32kmem.cpp
+++ b/src/devices/bus/ti99_peb/ti_32kmem.cpp
@@ -34,7 +34,7 @@
#define RAMREGION "ram32k"
-ti_32k_expcard_device::ti_32k_expcard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ti_32k_expcard_device::ti_32k_expcard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: ti_expansion_card_device(mconfig, TI_32KMEM, "TI-99 32KiB memory expansion card", tag, owner, clock, "ti99_32k", __FILE__),
m_ram(*this, RAMREGION)
{
@@ -42,7 +42,7 @@ ti_32k_expcard_device::ti_32k_expcard_device(const machine_config &mconfig, cons
READ8Z_MEMBER(ti_32k_expcard_device::readz)
{
- UINT8 val = 0;
+ uint8_t val = 0;
/*
The problem for mapping the memory into the address space is that
we have a block at 2000-3FFF and another one at A000-FFFF. The trick