summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8h.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8h.cpp')
-rw-r--r--src/devices/cpu/h8/h8h.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h8h.cpp b/src/devices/cpu/h8/h8h.cpp
index 21f40f77600..83801facdf8 100644
--- a/src/devices/cpu/h8/h8h.cpp
+++ b/src/devices/cpu/h8/h8h.cpp
@@ -4,11 +4,11 @@
#include "h8h.h"
#include "h8hd.h"
-h8h_device::h8h_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, address_map_constructor map_delegate) :
+h8h_device::h8h_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, address_map_constructor map_delegate) :
h8_device(mconfig, type, tag, owner, clock, map_delegate)
{
- supports_advanced = true;
- mode_advanced = true;
+ m_supports_advanced = true;
+ m_mode_advanced = true;
}
std::unique_ptr<util::disasm_interface> h8h_device::create_disassembler()