When i activate this code to jump direct to old firmware code, the Camera work as before (show last image.i test 2 times)
void __attribute__((naked,noinline)) boot() {
asm volatile (
"B sub_FF81000C\n" // work
But when do the code
"B 0xFF81000C\n"
it work not(Camera crash.i test 2 times).In theory it should work.
I want add code that jump from time to time to original firmware, but there are not for all addresses sub labels.
For example at end of boot func i want jump to old Firmware ROM
this was new code
"B sub_FF810354_my\n"
i do
"B sub_FF810354\n"
but there is the label not found.
"B 0xFF810354\n"
compiles but, Camera crash
So what can i do, to add own label or use a direct B call to Camera ?
>you may comment this for testing out v3 or v4:
I test now too on V4.Problem is same.
maybe when i can change
"LDR R1, =sub_FF815EE0_my\n"
to
"LDR R1, =sub_FF815EE0\n"
or
"LDR R1, =0xFF815EE0\n"
it can work.