diff options
Diffstat (limited to 'src/devices/machine/i2cmem.h')
-rw-r--r-- | src/devices/machine/i2cmem.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/devices/machine/i2cmem.h b/src/devices/machine/i2cmem.h index 07aebfa78ab..dc4bb5f7f4f 100644 --- a/src/devices/machine/i2cmem.h +++ b/src/devices/machine/i2cmem.h @@ -53,7 +53,7 @@ protected: i2cmem_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, int read_page_size, int write_page_size, int data_size); // device-level overrides - virtual void device_start() override; + virtual void device_start() override ATTR_COLD; // device_nvram_interface overrides virtual void nvram_default() override; @@ -115,9 +115,11 @@ DECLARE_I2C_DEVICE(x2404p); DECLARE_I2C_DEVICE(24c08); DECLARE_I2C_DEVICE(24c16); DECLARE_I2C_DEVICE(24c64); +DECLARE_I2C_DEVICE(24c128); +DECLARE_I2C_DEVICE(24c256); DECLARE_I2C_DEVICE(24c512); -// device type definition +// device type declaration DECLARE_DEVICE_TYPE(I2C_X24C01, i2c_x24c01_device) DECLARE_DEVICE_TYPE(I2C_24C01, i2c_24c01_device) DECLARE_DEVICE_TYPE(I2C_PCF8570, i2c_pcf8570_device) @@ -130,6 +132,8 @@ DECLARE_DEVICE_TYPE(I2C_X2404P, i2c_x2404p_device) DECLARE_DEVICE_TYPE(I2C_24C08, i2c_24c08_device) DECLARE_DEVICE_TYPE(I2C_24C16, i2c_24c16_device) DECLARE_DEVICE_TYPE(I2C_24C64, i2c_24c64_device) +DECLARE_DEVICE_TYPE(I2C_24C128, i2c_24c128_device) +DECLARE_DEVICE_TYPE(I2C_24C256, i2c_24c256_device) DECLARE_DEVICE_TYPE(I2C_24C512, i2c_24c512_device) #endif // MAME_MACHINE_I2CMEM_H |