1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-22 17:32:01 +00:00
SixtyPical/eg/rudiments/forever.60p

12 lines
200 B
Plaintext
Raw Normal View History

// This program is expected to loop forever.
// Be prepared to forcibly terminate your emulator.
2018-09-09 14:03:43 +00:00
define main routine
trashes a, y, z, n, c
{
ld y, 65
repeat {
inc y
} forever
}