Skip to content
This repository has been archived by the owner on Jul 31, 2021. It is now read-only.
robbiemc edited this page Mar 25, 2012 · 1 revision

How Loops are Compiled

While Loops

0  if RK(A) < RK(b) goto 2
1  goto 6
2  ... work ...
3  ... work ...
4  ... work ...
5  jmp 0
6  ... end of loop ...

For Loops

R(A) is the loop variable

1  if (R(A) += R(A+2)) <= R(A+1) goto TODO
Clone this wiki locally