nested-while2.txt 284 B

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