summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sh/sh4.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/sh/sh4.h')
-rw-r--r--src/devices/cpu/sh/sh4.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/sh/sh4.h b/src/devices/cpu/sh/sh4.h
index 0cb639c23d9..6af65a31b34 100644
--- a/src/devices/cpu/sh/sh4.h
+++ b/src/devices/cpu/sh/sh4.h
@@ -703,12 +703,12 @@ public:
DECLARE_WRITE32_MEMBER( sh4_internal_w );
DECLARE_READ32_MEMBER( sh4_internal_r );
- DECLARE_READ64_MEMBER( sh4_utlb_address_array_r );
- DECLARE_WRITE64_MEMBER( sh4_utlb_address_array_w );
- DECLARE_READ64_MEMBER( sh4_utlb_data_array1_r );
- DECLARE_WRITE64_MEMBER( sh4_utlb_data_array1_w );
- DECLARE_READ64_MEMBER( sh4_utlb_data_array2_r );
- DECLARE_WRITE64_MEMBER( sh4_utlb_data_array2_w );
+ uint64_t sh4_utlb_address_array_r(offs_t offset);
+ void sh4_utlb_address_array_w(offs_t offset, uint64_t data);
+ uint64_t sh4_utlb_data_array1_r(offs_t offset);
+ void sh4_utlb_data_array1_w(offs_t offset, uint64_t data);
+ uint64_t sh4_utlb_data_array2_r(offs_t offset);
+ void sh4_utlb_data_array2_w(offs_t offset, uint64_t data);
virtual void LDTLB(const uint16_t opcode) override;