Hi,
in a thumb-assembly file (my toolchain is gcc 4.8), I want to replace a branch with address assignment to the program-counter.
So instead of:
b lbl
I want to have something like:
pc = address(lbl)
This solution works. Here, I use the following code to…