diff options
Diffstat (limited to 'src/devices/cpu/m6805/m68hc05.cpp')
-rw-r--r-- | src/devices/cpu/m6805/m68hc05.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/cpu/m6805/m68hc05.cpp b/src/devices/cpu/m6805/m68hc05.cpp index df7c590d3a3..a18fdd7ccfb 100644 --- a/src/devices/cpu/m6805/m68hc05.cpp +++ b/src/devices/cpu/m6805/m68hc05.cpp @@ -138,7 +138,7 @@ m68hc05_device::m68hc05_device( machine_config const &mconfig, char const *tag, device_t *owner, - u32 clock, + const XTAL &clock, device_type type, u32 addr_width, u16 vector_mask, @@ -759,7 +759,7 @@ m68hc705_device::m68hc705_device( machine_config const &mconfig, char const *tag, device_t *owner, - u32 clock, + const XTAL &clock, device_type type, u32 addr_width, address_map_constructor internal_map) @@ -805,7 +805,7 @@ void m68hc05c4_device::c4_map(address_map &map) } -m68hc05c4_device::m68hc05c4_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc05c4_device::m68hc05c4_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc05_device( mconfig, tag, @@ -872,7 +872,7 @@ void m68hc05c8_device::c8_map(address_map &map) } -m68hc05c8_device::m68hc05c8_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc05c8_device::m68hc05c8_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc05_device( mconfig, tag, @@ -943,7 +943,7 @@ void m68hc705c4a_device::c4a_map(address_map &map) } -m68hc705c4a_device::m68hc705c4a_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc705c4a_device::m68hc705c4a_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc705_device( mconfig, tag, @@ -1039,7 +1039,7 @@ void m68hc705c8a_device::c8a_map(address_map &map) } -m68hc705c8a_device::m68hc705c8a_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc705c8a_device::m68hc705c8a_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc705_device( mconfig, tag, @@ -1155,7 +1155,7 @@ void m68hc705j1a_device::j1a_map(address_map &map) } -m68hc705j1a_device::m68hc705j1a_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc705j1a_device::m68hc705j1a_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc705_device( mconfig, tag, @@ -1235,7 +1235,7 @@ void m68hc05l9_device::l9_map(address_map &map) } -m68hc05l9_device::m68hc05l9_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc05l9_device::m68hc05l9_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc05_device( mconfig, tag, @@ -1318,7 +1318,7 @@ void m68hc05l11_device::l11_map(address_map &map) } -m68hc05l11_device::m68hc05l11_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock) +m68hc05l11_device::m68hc05l11_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock) : m68hc05_device( mconfig, tag, |