1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-07 06:29:32 +00:00
SixtyPical/eg/rudiments/forever.60p
2018-12-12 15:27:57 +00:00

12 lines
200 B
Plaintext

// This program is expected to loop forever.
// Be prepared to forcibly terminate your emulator.
define main routine
trashes a, y, z, n, c
{
ld y, 65
repeat {
inc y
} forever
}