Hello,
I use DSK6711 and I want to branch to the value of variable entry but I branch to the label address.
This is my assembler code:
.global _Skok_entry_point
.ref _entry
_Skok_entry_point:
mvkl .S2 _entry, B0
mvkh .S2 _entry, B0
B .S2 B0
nop 5
and a piece of C code:
extern unsigned int entry=0;
extern void Skok_entry_point(void);
...
entry=2147483648;
Skok_entry_point();
...
now I want to branch to the address 2147483648(0x80000000) not to address label _entry. Does anybody know how to solve this problem?
Thanks,