summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/a7800.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/a7800.cpp')
-rw-r--r--src/mame/drivers/a7800.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/a7800.cpp b/src/mame/drivers/a7800.cpp
index 0ebaaeee0a3..f8e9b4247ae 100644
--- a/src/mame/drivers/a7800.cpp
+++ b/src/mame/drivers/a7800.cpp
@@ -158,7 +158,7 @@ protected:
required_ioport m_io_console_buttons;
required_device<a78_cart_slot_device> m_cart;
required_device<screen_device> m_screen;
- required_region_ptr<UINT8> m_bios;
+ required_region_ptr<uint8_t> m_bios;
};
@@ -1307,7 +1307,7 @@ void a7800_state::machine_start()
save_item(NAME(m_maria_flag));
// set up RAM mirrors
- UINT8 *ram = reinterpret_cast<UINT8 *>(memshare("6116_2")->ptr());
+ uint8_t *ram = reinterpret_cast<uint8_t *>(memshare("6116_2")->ptr());
membank("zpmirror")->set_base(ram + 0x0040);
membank("spmirror")->set_base(ram + 0x0140);