11-15-2021, 01:49 PM
(11-15-2021, 01:02 PM)Seeky Wrote: The 0x80E474A4 address you're using isn't region free, and might not even be persistent between reboots on the original region since it's in dynamic/heap memory rather than in a data section of the dol/rel
Unrelated tip:
cmpwi r11, 1
bne not
b in
not:
li r10, 0
b end
in:
li r10, 1
Can be optimised to
li r10, 0
cmpwi r11, 1
bne end
li r10, 1
end:
yes, i am currently testing the code on PAL etc. I will be sure to change the post when i test it