1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-10-01 21:56:32 +00:00

"repeat forever" in the main loop, or at least as close as we can.

This commit is contained in:
Chris Pressey 2017-12-11 14:21:32 +00:00
parent 85f9d6fc95
commit 73810827b9

View File

@ -163,5 +163,8 @@ routine main
copy cinv, save_cinv
copy our_cinv, cinv
}
// repeat forever {}
// FIXME: find out why `repeat { } forever` does not analyze OK
repeat {
ld a, 0
} until not z
}