1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-07 06:29:32 +00:00
SixtyPical/eg/screen2.60p

17 lines
434 B
Plaintext
Raw Normal View History

2015-10-18 17:54:28 +00:00
// Displays 256 hearts at the top of the Commodore 64's screen.
// Define where the screen starts in memory:
byte table screen @ 1024
routine main
2015-10-18 17:54:28 +00:00
// These are the values that will be written to by this routine:
trashes a, x, z, n, screen
{
ld x, 0
2015-10-18 17:54:28 +00:00
ld a, 83 // 83 = screen code for heart
repeat {
st a, screen + x
inc x
2015-10-18 17:54:28 +00:00
} until z // this flag will be set when x wraps around from 255 to 0
}