summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/psx/mdec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/psx/mdec.h')
-rw-r--r--src/devices/cpu/psx/mdec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/psx/mdec.h b/src/devices/cpu/psx/mdec.h
index 941ba2f2f58..8d9da890069 100644
--- a/src/devices/cpu/psx/mdec.h
+++ b/src/devices/cpu/psx/mdec.h
@@ -20,8 +20,8 @@ class psxmdec_device : public device_t
public:
psxmdec_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_WRITE32_MEMBER( write );
- DECLARE_READ32_MEMBER( read );
+ void write(offs_t offset, uint32_t data);
+ uint32_t read(offs_t offset);
void dma_write( uint32_t *ram, uint32_t n_address, int32_t n_size );
void dma_read( uint32_t *ram, uint32_t n_address, int32_t n_size );