Quote Originally Posted by savage
So any screen shots or something to show working?
Oh, well... nothing so fun to show. I only have this screenshot:



The code is tacken from an example on Mr. Harbour's book. The interesting thing is that now fpc executable runs faster than the gcc one

BTW, I have found a nice trick for swapping two registers without involving a third one:
Code:
  eor r0, r0, r1
  eor r1, r1, r0
  eor r0, r0, r1