diff options
Diffstat (limited to 'src/emu/cpu/psx')
-rw-r--r-- | src/emu/cpu/psx/dma.h | 4 | ||||
-rw-r--r-- | src/emu/cpu/psx/irq.h | 4 | ||||
-rw-r--r-- | src/emu/cpu/psx/mdec.h | 4 | ||||
-rw-r--r-- | src/emu/cpu/psx/psx.h | 8 | ||||
-rw-r--r-- | src/emu/cpu/psx/rcnt.h | 4 | ||||
-rw-r--r-- | src/emu/cpu/psx/sio.h | 4 |
6 files changed, 14 insertions, 14 deletions
diff --git a/src/emu/cpu/psx/dma.h b/src/emu/cpu/psx/dma.h index 20d45a2b879..4aec268472a 100644 --- a/src/emu/cpu/psx/dma.h +++ b/src/emu/cpu/psx/dma.h @@ -37,8 +37,8 @@ public: void install_read_handler( int n_channel, psx_dma_read_delegate p_fn_dma_read ); void install_write_handler( int n_channel, psx_dma_read_delegate p_fn_dma_write ); - WRITE32_MEMBER( write ); - READ32_MEMBER( read ); + DECLARE_WRITE32_MEMBER( write ); + DECLARE_READ32_MEMBER( read ); protected: virtual void device_start(); diff --git a/src/emu/cpu/psx/irq.h b/src/emu/cpu/psx/irq.h index 103a7386964..f05d2e8d1c9 100644 --- a/src/emu/cpu/psx/irq.h +++ b/src/emu/cpu/psx/irq.h @@ -31,8 +31,8 @@ class psxirq_device : public device_t public: psxirq_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - READ32_MEMBER( read ); - WRITE32_MEMBER( write ); + DECLARE_READ32_MEMBER( read ); + DECLARE_WRITE32_MEMBER( write ); void set( UINT32 bitmask ); diff --git a/src/emu/cpu/psx/mdec.h b/src/emu/cpu/psx/mdec.h index d4dc2379c63..8d5de675fa2 100644 --- a/src/emu/cpu/psx/mdec.h +++ b/src/emu/cpu/psx/mdec.h @@ -24,8 +24,8 @@ class psxmdec_device : public device_t public: psxmdec_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - WRITE32_MEMBER( write ); - READ32_MEMBER( read ); + DECLARE_WRITE32_MEMBER( write ); + DECLARE_READ32_MEMBER( read ); void dma_write( UINT32 n_address, INT32 n_size ); void dma_read( UINT32 n_address, INT32 n_size ); diff --git a/src/emu/cpu/psx/psx.h b/src/emu/cpu/psx/psx.h index 2770d004e26..1a0c978ba5a 100644 --- a/src/emu/cpu/psx/psx.h +++ b/src/emu/cpu/psx/psx.h @@ -125,10 +125,10 @@ public: psxcpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // public interfaces - WRITE32_MEMBER( biu_w ); - READ32_MEMBER( biu_r ); - WRITE32_MEMBER( berr_w ); - READ32_MEMBER( berr_r ); + DECLARE_WRITE32_MEMBER( biu_w ); + DECLARE_READ32_MEMBER( biu_r ); + DECLARE_WRITE32_MEMBER( berr_w ); + DECLARE_READ32_MEMBER( berr_r ); static psxcpu_device *getcpu( device_t &device, const char *cputag ); static void install_sio_handler( device_t &device, const char *cputag, int n_port, psx_sio_handler p_f_sio_handler ); diff --git a/src/emu/cpu/psx/rcnt.h b/src/emu/cpu/psx/rcnt.h index f2e454cfd66..e2cb483cbb9 100644 --- a/src/emu/cpu/psx/rcnt.h +++ b/src/emu/cpu/psx/rcnt.h @@ -37,8 +37,8 @@ class psxrcnt_device : public device_t public: psxrcnt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - WRITE32_MEMBER( write ); - READ32_MEMBER( read ); + DECLARE_WRITE32_MEMBER( write ); + DECLARE_READ32_MEMBER( read ); protected: virtual void device_start(); diff --git a/src/emu/cpu/psx/sio.h b/src/emu/cpu/psx/sio.h index b925e05854a..c611e15003d 100644 --- a/src/emu/cpu/psx/sio.h +++ b/src/emu/cpu/psx/sio.h @@ -69,8 +69,8 @@ public: void install_handler( int n_port, psx_sio_handler p_f_sio_handler ); - WRITE32_MEMBER( write ); - READ32_MEMBER( read ); + DECLARE_WRITE32_MEMBER( write ); + DECLARE_READ32_MEMBER( read ); void input( int n_port, int n_mask, int n_data ); |