summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/pc1350.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pc1350.cpp')
-rw-r--r--src/mame/machine/pc1350.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/pc1350.cpp b/src/mame/machine/pc1350.cpp
index 6559e08041e..ad439a3e523 100644
--- a/src/mame/machine/pc1350.cpp
+++ b/src/mame/machine/pc1350.cpp
@@ -127,8 +127,8 @@ void pc1350_state::machine_start()
space.nop_readwrite(0x2000, 0x3fff);
}
- UINT8 *ram = memregion("maincpu")->base() + 0x2000;
- UINT8 *cpu = m_maincpu->internal_ram();
+ uint8_t *ram = memregion("maincpu")->base() + 0x2000;
+ uint8_t *cpu = m_maincpu->internal_ram();
machine().device<nvram_device>("cpu_nvram")->set_base(cpu, 96);
machine().device<nvram_device>("ram_nvram")->set_base(ram, 0x5000);