A
aleksa
Google found this:
void (* const JMP_IRAM2) (void) = (void (*) (void)) 0x300000;
that works, but also generates a pointer (pointing to 0x300000),
which is not even used by the generated code.
Just curious, is there a way that doesn't make an unnecessary pointer?
void (* const JMP_IRAM2) (void) = (void (*) (void)) 0x300000;
that works, but also generates a pointer (pointing to 0x300000),
which is not even used by the generated code.
Just curious, is there a way that doesn't make an unnecessary pointer?