diff options
Diffstat (limited to 'src/devices/bus/cbus/pc9801_55.h')
-rw-r--r-- | src/devices/bus/cbus/pc9801_55.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/cbus/pc9801_55.h b/src/devices/bus/cbus/pc9801_55.h index b74c754c2b8..212e4501b26 100644 --- a/src/devices/bus/cbus/pc9801_55.h +++ b/src/devices/bus/cbus/pc9801_55.h @@ -26,8 +26,8 @@ class pc9801_55_device : public device_t { public: // construction/destruction - //pc9801_55_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - pc9801_55_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + //pc9801_55_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); + pc9801_55_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); static constexpr feature_type unemulated_features() { return feature::DISK; } @@ -55,7 +55,7 @@ private: class pc9801_55u_device : public pc9801_55_device { public: - pc9801_55u_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pc9801_55u_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); private: virtual const tiny_rom_entry *device_rom_region() const override; @@ -65,7 +65,7 @@ private: class pc9801_55l_device : public pc9801_55_device { public: - pc9801_55l_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pc9801_55l_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); private: virtual const tiny_rom_entry *device_rom_region() const override; |