git @ Cat's Eye Technologies SixtyPical / 0.18 eg / rudiments / forever.60p
0.18

Tree @0.18 (Download .tar.gz)

forever.60p @0.18raw · history · blame

// 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
}