diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/bus/acorn/atom | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/acorn/atom')
-rw-r--r-- | src/devices/bus/acorn/atom/discpack.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/acorn/atom/discpack.h | 2 | ||||
-rw-r--r-- | src/devices/bus/acorn/atom/econet.cpp | 6 | ||||
-rw-r--r-- | src/devices/bus/acorn/atom/econet.h | 2 | ||||
-rw-r--r-- | src/devices/bus/acorn/atom/sid.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/acorn/atom/sid.h | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/acorn/atom/discpack.cpp b/src/devices/bus/acorn/atom/discpack.cpp index 2f2024b86b0..6b5e185d1bf 100644 --- a/src/devices/bus/acorn/atom/discpack.cpp +++ b/src/devices/bus/acorn/atom/discpack.cpp @@ -67,7 +67,7 @@ const tiny_rom_entry *atom_discpack_device::device_rom_region() const // atom_discpack_device - constructor //------------------------------------------------- -atom_discpack_device::atom_discpack_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +atom_discpack_device::atom_discpack_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, ATOM_DISCPACK, tag, owner, clock) , device_acorn_bus_interface(mconfig, *this) , m_dos_rom(*this, "dos_rom") diff --git a/src/devices/bus/acorn/atom/discpack.h b/src/devices/bus/acorn/atom/discpack.h index cff8a09005d..b679d1d04f0 100644 --- a/src/devices/bus/acorn/atom/discpack.h +++ b/src/devices/bus/acorn/atom/discpack.h @@ -27,7 +27,7 @@ class atom_discpack_device : { public: // construction/destruction - atom_discpack_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + atom_discpack_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); static void floppy_formats(format_registration &fr); diff --git a/src/devices/bus/acorn/atom/econet.cpp b/src/devices/bus/acorn/atom/econet.cpp index 70c92ff3489..e91ef84c2c0 100644 --- a/src/devices/bus/acorn/atom/econet.cpp +++ b/src/devices/bus/acorn/atom/econet.cpp @@ -29,12 +29,12 @@ void atom_econet_device::device_add_mconfig(machine_config &config) m_adlc->out_txd_cb().set(m_econet, FUNC(econet_device::host_data_w)); m_adlc->out_irq_cb().set(FUNC(atom_econet_device::bus_irq_w)); - ECONET(config, m_econet, 0); + ECONET(config, m_econet); m_econet->clk_wr_callback().set(m_adlc, FUNC(mc6854_device::txc_w)); m_econet->clk_wr_callback().append(m_adlc, FUNC(mc6854_device::rxc_w)); m_econet->data_wr_callback().set(m_adlc, FUNC(mc6854_device::set_rx)); - econet_slot_device &slot(ECONET_SLOT(config, "econet254", 0)); + econet_slot_device &slot(ECONET_SLOT(config, "econet254")); econet_devices(slot); slot.set_slot(254); } @@ -47,7 +47,7 @@ void atom_econet_device::device_add_mconfig(machine_config &config) // atom_econet_device - constructor //------------------------------------------------- -atom_econet_device::atom_econet_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +atom_econet_device::atom_econet_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, ATOM_ECONET, tag, owner, clock) , device_acorn_bus_interface(mconfig, *this) , m_adlc(*this, "mc6854") diff --git a/src/devices/bus/acorn/atom/econet.h b/src/devices/bus/acorn/atom/econet.h index 114dc76bbeb..a9f428c9107 100644 --- a/src/devices/bus/acorn/atom/econet.h +++ b/src/devices/bus/acorn/atom/econet.h @@ -26,7 +26,7 @@ class atom_econet_device : { public: // construction/destruction - atom_econet_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + atom_econet_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device-level overrides diff --git a/src/devices/bus/acorn/atom/sid.cpp b/src/devices/bus/acorn/atom/sid.cpp index 4b0e1f7ff4d..f1fe9e0781d 100644 --- a/src/devices/bus/acorn/atom/sid.cpp +++ b/src/devices/bus/acorn/atom/sid.cpp @@ -39,7 +39,7 @@ void atom_sid_device::device_add_mconfig(machine_config &config) // atom_sid_device - constructor //------------------------------------------------- -atom_sid_device::atom_sid_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +atom_sid_device::atom_sid_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, ATOM_SID, tag, owner, clock) , device_acorn_bus_interface(mconfig, *this) , m_sid(*this, "sid6581") diff --git a/src/devices/bus/acorn/atom/sid.h b/src/devices/bus/acorn/atom/sid.h index 8383bbdf9c8..f52841eb9ff 100644 --- a/src/devices/bus/acorn/atom/sid.h +++ b/src/devices/bus/acorn/atom/sid.h @@ -25,7 +25,7 @@ class atom_sid_device : { public: // construction/destruction - atom_sid_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + atom_sid_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device-level overrides |