summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti990_4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti990_4.cpp')
-rw-r--r--src/mame/drivers/ti990_4.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/ti990_4.cpp b/src/mame/drivers/ti990_4.cpp
index b51fe1edf50..ffa4c58fe4b 100644
--- a/src/mame/drivers/ti990_4.cpp
+++ b/src/mame/drivers/ti990_4.cpp
@@ -62,8 +62,8 @@ public:
void init_ti990_4v();
private:
- DECLARE_READ8_MEMBER( panel_read );
- DECLARE_WRITE8_MEMBER( panel_write );
+ uint8_t panel_read(offs_t offset);
+ void panel_write(offs_t offset, uint8_t data);
void external_operation(offs_t offset, uint8_t data);
uint8_t interrupt_level();
DECLARE_WRITE_LINE_MEMBER( fd_interrupt );
@@ -113,7 +113,7 @@ void ti990_4_state::device_timer(emu_timer &timer, device_timer_id id, int param
logerror("ti990_4: Released LOAD interrupt\n");
}
-READ8_MEMBER( ti990_4_state::panel_read )
+uint8_t ti990_4_state::panel_read(offs_t offset)
{
if (offset == 11 || offset == 14)
return 1;
@@ -121,7 +121,7 @@ READ8_MEMBER( ti990_4_state::panel_read )
return 0;
}
-WRITE8_MEMBER( ti990_4_state::panel_write )
+void ti990_4_state::panel_write(offs_t offset, uint8_t data)
{
logerror("ti990_4: writing to panel @CRU %04x: %02x\n", offset<<1, data);
}