aboutsummaryrefslogtreecommitdiff
path: root/ARMInterpreter_LoadStore.h
diff options
context:
space:
mode:
Diffstat (limited to 'ARMInterpreter_LoadStore.h')
-rw-r--r--ARMInterpreter_LoadStore.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/ARMInterpreter_LoadStore.h b/ARMInterpreter_LoadStore.h
index f56a4fb..c0ae9a0 100644
--- a/ARMInterpreter_LoadStore.h
+++ b/ARMInterpreter_LoadStore.h
@@ -23,6 +23,28 @@ A_PROTO_WB_LDRSTR(STRB)
A_PROTO_WB_LDRSTR(LDR)
A_PROTO_WB_LDRSTR(LDRB)
+#define A_PROTO_HD_LDRSTR(x) \
+\
+s32 A_##x##_IMM(ARM* cpu); \
+s32 A_##x##_REG(ARM* cpu); \
+s32 A_##x##_POST_IMM(ARM* cpu); \
+s32 A_##x##_POST_REG(ARM* cpu);
+
+A_PROTO_HD_LDRSTR(STRH)
+A_PROTO_HD_LDRSTR(LDRD)
+A_PROTO_HD_LDRSTR(STRD)
+A_PROTO_HD_LDRSTR(LDRH)
+A_PROTO_HD_LDRSTR(LDRSB)
+A_PROTO_HD_LDRSTR(LDRSH)
+
+
+s32 T_LDR_PCREL(ARM* cpu);
+
+s32 T_STR_REG(ARM* cpu);
+s32 T_STRB_REG(ARM* cpu);
+s32 T_LDR_REG(ARM* cpu);
+s32 T_LDRB_REG(ARM* cpu);
+
}
#endif