summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/psx/dma.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/psx/dma.h')
-rw-r--r--src/devices/cpu/psx/dma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/psx/dma.h b/src/devices/cpu/psx/dma.h
index 3e368c23ad3..1bd743614b2 100644
--- a/src/devices/cpu/psx/dma.h
+++ b/src/devices/cpu/psx/dma.h
@@ -29,8 +29,8 @@ public:
void install_read_handler( int n_channel, read_delegate p_fn_dma_read );
void install_write_handler( int n_channel, write_delegate p_fn_dma_write );
- 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);
uint32_t *m_ram;
size_t m_ramsize;