Tidy constructor of ds12885 device (nw)

This commit is contained in:
S.Z 2019-01-06 11:56:46 +01:00 committed by GitHub
parent 0b2789d6a2
commit ac4a986712
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,10 @@ class ds12885_device : public mc146818_device
public:
// construction/destruction
ds12885_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 32'768);
ds12885_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock = 32'768);
protected:
ds12885_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
virtual int data_size() override { return 128; }
virtual int get_timer_bypass() override;
};