summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/spg2xx_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/spg2xx_io.h')
-rw-r--r--src/devices/machine/spg2xx_io.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/spg2xx_io.h b/src/devices/machine/spg2xx_io.h
index d1ddd573283..37cd0d6141f 100644
--- a/src/devices/machine/spg2xx_io.h
+++ b/src/devices/machine/spg2xx_io.h
@@ -23,8 +23,8 @@ public:
template <size_t Line> auto adc_in() { return m_adc_in[Line].bind(); }
- auto eeprom_w() { return m_eeprom_w.bind(); }
- auto eeprom_r() { return m_eeprom_r.bind(); }
+ auto i2c_w() { return m_i2c_w.bind(); }
+ auto i2c_r() { return m_i2c_r.bind(); }
auto uart_tx() { return m_uart_tx.bind(); }
@@ -112,8 +112,8 @@ protected:
devcb_read16 m_adc_in[2];
- devcb_write8 m_eeprom_w;
- devcb_read8 m_eeprom_r;
+ devcb_write8 m_i2c_w;
+ devcb_read8 m_i2c_r;
devcb_write8 m_uart_tx;