summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/esripsys.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/esripsys.h')
-rw-r--r--src/mame/includes/esripsys.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/mame/includes/esripsys.h b/src/mame/includes/esripsys.h
index e73856de2bf..6544fd599b5 100644
--- a/src/mame/includes/esripsys.h
+++ b/src/mame/includes/esripsys.h
@@ -97,31 +97,31 @@ private:
std::unique_ptr<uint8_t[]> m_scale_table;
int m_video_firq;
uint8_t m_bg_intensity;
- DECLARE_WRITE8_MEMBER(uart_w);
- DECLARE_READ8_MEMBER(uart_r);
- DECLARE_READ8_MEMBER(g_status_r);
- DECLARE_WRITE8_MEMBER(g_status_w);
- DECLARE_READ8_MEMBER(f_status_r);
- DECLARE_WRITE8_MEMBER(f_status_w);
- DECLARE_WRITE8_MEMBER(frame_w);
- DECLARE_READ8_MEMBER(fdt_r);
- DECLARE_WRITE8_MEMBER(fdt_w);
+ void uart_w(offs_t offset, uint8_t data);
+ uint8_t uart_r();
+ uint8_t g_status_r();
+ void g_status_w(uint8_t data);
+ uint8_t f_status_r();
+ void f_status_w(uint8_t data);
+ void frame_w(uint8_t data);
+ uint8_t fdt_r(offs_t offset);
+ void fdt_w(offs_t offset, uint8_t data);
uint16_t fdt_rip_r(offs_t offset);
void fdt_rip_w(offs_t offset, uint16_t data);
uint8_t rip_status_in();
- DECLARE_WRITE8_MEMBER(g_iobus_w);
- DECLARE_READ8_MEMBER(g_iobus_r);
- DECLARE_WRITE8_MEMBER(g_ioadd_w);
- DECLARE_READ8_MEMBER(s_200e_r);
- DECLARE_WRITE8_MEMBER(s_200e_w);
- DECLARE_WRITE8_MEMBER(s_200f_w);
- DECLARE_READ8_MEMBER(s_200f_r);
- DECLARE_READ8_MEMBER(tms5220_r);
- DECLARE_WRITE8_MEMBER(tms5220_w);
- DECLARE_WRITE8_MEMBER(control_w);
- DECLARE_WRITE8_MEMBER(esripsys_bg_intensity_w);
+ void g_iobus_w(uint8_t data);
+ uint8_t g_iobus_r();
+ void g_ioadd_w(uint8_t data);
+ uint8_t s_200e_r();
+ void s_200e_w(uint8_t data);
+ void s_200f_w(uint8_t data);
+ uint8_t s_200f_r();
+ uint8_t tms5220_r(offs_t offset);
+ void tms5220_w(offs_t offset, uint8_t data);
+ void control_w(uint8_t data);
+ void esripsys_bg_intensity_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(ptm_irq);
- DECLARE_WRITE8_MEMBER(esripsys_dac_w);
+ void esripsys_dac_w(offs_t offset, uint8_t data);
virtual void video_start() override;
uint32_t screen_update_esripsys(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(esripsys_vblank_irq);