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

Tree @0.18 (Download .tar.gz)

memloc.60p @0.18raw · history · blame

// Include `support/${PLATFORM}.60p` before this source
// Should print AB

byte foo

define print routine
  inputs foo
  trashes a, z, n
{
    ld a, foo
    call chrout
}

define main routine
  trashes a, y, z, n, foo
{
    ld y, 65
    st y, foo
    call print
    inc foo
    call print
}