summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/stic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/stic.h')
-rw-r--r--src/mame/video/stic.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/stic.h b/src/mame/video/stic.h
index ff5125f7912..48860f91e83 100644
--- a/src/mame/video/stic.h
+++ b/src/mame/video/stic.h
@@ -84,11 +84,11 @@ public:
stic_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~stic_device();
- DECLARE_READ16_MEMBER(read);
- DECLARE_READ16_MEMBER(gram_read);
- DECLARE_READ16_MEMBER(grom_read) { if (offset > 0x800) printf("help! %X\n", offset); return (0xff00 | m_grom[offset]); }
- DECLARE_WRITE16_MEMBER(write);
- DECLARE_WRITE16_MEMBER(gram_write);
+ uint16_t read(offs_t offset);
+ uint16_t gram_read(offs_t offset);
+ uint16_t grom_read(offs_t offset) { if (offset > 0x800) printf("help! %X\n", offset); return (0xff00 | m_grom[offset]); }
+ void write(offs_t offset, uint16_t data);
+ void gram_write(offs_t offset, uint16_t data);
void write_to_btb(int h, int w, uint16_t data) { m_backtab_buffer[h][w] = data; }
int read_row_delay() { return m_row_delay; }