Browse By Tags

Sorry, but there are no more tags available to filter with.
  • Replacing branch-instruction with address assignment to PC

    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…