AFPBridge/afpinit.asm
Stephen Heumann 503b15b5e4 Make afpbridge an init.
This currently uses the run queue to poll for messages from the server, which works OK in typical desktop programs but not in other environments.
2017-04-05 00:24:54 -05:00

21 lines
177 B
NASM

case on
dummy private
jml InitStart
end
unloadFlagPtr data
ds 4
end
InitStart private
tay
tsc
clc
adc #4
sta >unloadFlagPtr
lda #0
sta >unloadFlagPtr+2
tya
end