summaryrefslogtreecommitdiff
path: root/arm/arm_emit.h
diff options
context:
space:
mode:
authorneonloop2021-08-01 17:39:51 +0000
committerneonloop2021-08-01 17:39:51 +0000
commitbaeeaca5858dfae6e63cf79994b8ff2aeb830283 (patch)
treed0fe1081185ec73bedb2e741e221793bc8155068 /arm/arm_emit.h
parent8c8484e55fffa79c903c95c41a6794fca40a723b (diff)
downloadpicogpsp-baeeaca5858dfae6e63cf79994b8ff2aeb830283.tar.gz
picogpsp-baeeaca5858dfae6e63cf79994b8ff2aeb830283.tar.bz2
picogpsp-baeeaca5858dfae6e63cf79994b8ff2aeb830283.zip
Revert "Add ROM mirroring and fix mult. cycle count"HEADpico-fe
This reverts commit aafde6de7b2a28c1684c0e9fa62fee9a2a5398dd. This was causing trimmed roms to fail to load.
Diffstat (limited to 'arm/arm_emit.h')
-rw-r--r--arm/arm_emit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arm/arm_emit.h b/arm/arm_emit.h
index 22ca763..17ec744 100644
--- a/arm/arm_emit.h
+++ b/arm/arm_emit.h
@@ -1239,10 +1239,12 @@ u32 execute_store_cpsr_body(u32 _cpsr, u32 store_mask, u32 address)
#define emit_trace_instruction(pc) \
generate_save_flags(); \
+ ARM_LDR_IMM(0, ARMREG_SP, reg_base, 34*4); \
ARM_STMDB_WB(0, ARMREG_SP, 0x500C); \
arm_load_imm_32bit(reg_a0, pc); \
generate_function_call(trace_instruction); \
ARM_LDMIA_WB(0, ARMREG_SP, 0x500C); \
+ arm_load_imm_32bit(ARMREG_SP, (u32)reg); \
generate_restore_flags();
#define emit_trace_thumb_instruction(pc) \
emit_trace_instruction(pc)