while-in-do-while.txt 224 B

1234567891011121314151617181920
  1. do {
  2. while (var123 == 18) {
  3. var123++
  4. }
  5. } while (var321 == 42)
  6. do:
  7. while:
  8. pushWord 18
  9. pushWordVar 123
  10. eq
  11. jumpTrue postWhile
  12. wordVarInc 123
  13. jump while
  14. postWhile:
  15. pushWord 42
  16. pushWordVar 321
  17. eq
  18. jumpTrue do
  19. stopObjectCodeA