diff options
Diffstat (limited to 'src/devices/bus/ti99x/990_tap.cpp')
-rw-r--r-- | src/devices/bus/ti99x/990_tap.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/ti99x/990_tap.cpp b/src/devices/bus/ti99x/990_tap.cpp index dff4f68a7a0..f1b23e56993 100644 --- a/src/devices/bus/ti99x/990_tap.cpp +++ b/src/devices/bus/ti99x/990_tap.cpp @@ -893,7 +893,7 @@ class ti990_tape_image_device : public magtape_image_device { public: // construction/destruction - ti990_tape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + ti990_tape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // image-level overrides virtual const char *file_extensions() const noexcept override { return "tap"; } @@ -911,7 +911,7 @@ private: DEFINE_DEVICE_TYPE(TI990_TAPE, ti990_tape_image_device, "ti990_tape_image", "TI-990 Magnetic Tape") -ti990_tape_image_device::ti990_tape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +ti990_tape_image_device::ti990_tape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : magtape_image_device(mconfig, TI990_TAPE, tag, owner, clock) { } @@ -955,7 +955,7 @@ void ti990_tape_image_device::call_unload() DEFINE_DEVICE_TYPE(TI990_TAPE_CTRL, tap_990_device, "ti990_tap", "Generic TI-900 Tape Controller") -tap_990_device::tap_990_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +tap_990_device::tap_990_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, TI990_TAPE_CTRL, tag, owner, clock) , m_memory_space(*this, finder_base::DUMMY_TAG, -1) , m_int_line(*this) @@ -984,8 +984,8 @@ void tap_990_device::device_start() void tap_990_device::device_add_mconfig(machine_config &config) { - TI990_TAPE(config, "tape0", 0); - TI990_TAPE(config, "tape1", 0); - TI990_TAPE(config, "tape2", 0); - TI990_TAPE(config, "tape3", 0); + TI990_TAPE(config, "tape0"); + TI990_TAPE(config, "tape1"); + TI990_TAPE(config, "tape2"); + TI990_TAPE(config, "tape3"); } |