mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 01:32:13 +00:00
12 lines
200 B
Plaintext
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
|
|
}
|