summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/xavix.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/xavix.h')
-rw-r--r--src/mame/includes/xavix.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mame/includes/xavix.h b/src/mame/includes/xavix.h
index 5b7300ac4a3..7f3826d35e5 100644
--- a/src/mame/includes/xavix.h
+++ b/src/mame/includes/xavix.h
@@ -527,6 +527,19 @@ protected:
required_device<i2cmem_device> m_i2cmem;
};
+class xavix_i2c_lotr_state : public xavix_i2c_state
+{
+public:
+ xavix_i2c_lotr_state(const machine_config &mconfig, device_type type, const char *tag)
+ : xavix_i2c_state(mconfig, type, tag)
+ { }
+
+protected:
+ virtual uint8_t read_io1(uint8_t direction) override;
+ //virtual void write_io1(uint8_t data, uint8_t direction) override;
+};
+
+
class xavix_mtrk_state : public xavix_state
{