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/ieee488/grid2102.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/bus/ieee488/grid2102.h')
-rw-r--r-- | src/devices/bus/ieee488/grid2102.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/ieee488/grid2102.h b/src/devices/bus/ieee488/grid2102.h index 11cdbcecdd0..501cf62f41c 100644 --- a/src/devices/bus/ieee488/grid2102.h +++ b/src/devices/bus/ieee488/grid2102.h @@ -28,7 +28,7 @@ class grid210x_device : public device_t, { public: // construction/destruction - grid210x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, int bus_addr, uint8_t *identify_response, attotime read_delay = attotime::from_msec(5)); + grid210x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, int bus_addr, uint8_t *identify_response, attotime read_delay = attotime::from_msec(5)); protected: // device-level overrides @@ -84,7 +84,7 @@ protected: class grid2102_device : public grid210x_device { public: // construction/destruction - grid2102_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + grid2102_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); private: static uint8_t identify_response[]; }; @@ -92,7 +92,7 @@ private: class grid2101_floppy_device : public grid210x_device { public: // construction/destruction - grid2101_floppy_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + grid2101_floppy_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); private: static uint8_t identify_response[]; }; @@ -100,7 +100,7 @@ private: class grid2101_hdd_device : public grid210x_device { public: // construction/destruction - grid2101_hdd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + grid2101_hdd_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // image-level overrides virtual const char *image_type_name() const noexcept override { return "harddisk"; } |