1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-06 15:29:30 +00:00
SixtyPical/eg/apple2/print.60p

24 lines
454 B
Plaintext
Raw Normal View History

// SPDX-FileCopyrightText: Chris Pressey, the author of this work, has dedicated it to the public domain.
// For more information, please refer to <https://unlicense.org/>
// SPDX-License-Identifier: Unlicense
// Write ">AB>" to "standard output"
2018-09-09 13:01:38 +00:00
define cout routine
inputs a
trashes a
@ $FDED
2018-09-09 13:01:38 +00:00
define main routine
trashes a, z, n
{
ld a, 62
call cout
ld a, 65
call cout
ld a, 66
call cout
ld a, 62
call cout
}