summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/psx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/psx.h')
-rw-r--r--src/devices/video/psx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/psx.h b/src/devices/video/psx.h
index cc3df366f20..55ab431b716 100644
--- a/src/devices/video/psx.h
+++ b/src/devices/video/psx.h
@@ -30,8 +30,8 @@ public:
auto vblank_callback() { return m_vblank_handler.bind(); }
void set_vram_size(int size) { vramSize = size; }
- DECLARE_WRITE32_MEMBER( write );
- DECLARE_READ32_MEMBER( read );
+ void write(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
+ uint32_t read(offs_t offset, uint32_t mem_mask = ~0);
void dma_read( uint32_t *ram, uint32_t n_address, int32_t n_size );
void dma_write( uint32_t *ram, uint32_t n_address, int32_t n_size );
void lightgun_set( int, int );