diff options
Diffstat (limited to 'src/devices/bus/vtech/memexp/memory.cpp')
-rw-r--r-- | src/devices/bus/vtech/memexp/memory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vtech/memexp/memory.cpp b/src/devices/bus/vtech/memexp/memory.cpp index bfac5f06b4c..b770f4a66f9 100644 --- a/src/devices/bus/vtech/memexp/memory.cpp +++ b/src/devices/bus/vtech/memexp/memory.cpp @@ -38,7 +38,7 @@ void vtech_laser110_16k_device::mem_map(address_map &map) // laser110_16k_device - constructor //------------------------------------------------- -vtech_laser110_16k_device::vtech_laser110_16k_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +vtech_laser110_16k_device::vtech_laser110_16k_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : vtech_memexp_device(mconfig, VTECH_LASER110_16K, tag, owner, clock) { } @@ -71,7 +71,7 @@ void vtech_laser210_16k_device::mem_map(address_map &map) // vtech_laser210_16k_device - constructor //------------------------------------------------- -vtech_laser210_16k_device::vtech_laser210_16k_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +vtech_laser210_16k_device::vtech_laser210_16k_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : vtech_memexp_device(mconfig, VTECH_LASER210_16K, tag, owner, clock) { } @@ -104,7 +104,7 @@ void vtech_laser310_16k_device::mem_map(address_map &map) // vtech_laser310_16k_device - constructor //------------------------------------------------- -vtech_laser310_16k_device::vtech_laser310_16k_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +vtech_laser310_16k_device::vtech_laser310_16k_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : vtech_memexp_device(mconfig, VTECH_LASER310_16K, tag, owner, clock) { } @@ -148,7 +148,7 @@ void vtech_laser_64k_device::io_map(address_map &map) // vtech_laser_64k_device - constructor //------------------------------------------------- -vtech_laser_64k_device::vtech_laser_64k_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +vtech_laser_64k_device::vtech_laser_64k_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : vtech_memexp_device(mconfig, VTECH_LASER_64K, tag, owner, clock), m_fixed_bank(*this, "fixed_bank"), m_bank(*this, "bank") |