1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-10-12 09:23:45 +00:00
millfork/include/a8_kernel.mfk

14 lines
200 B
Plaintext
Raw Normal View History

#if not(ATARI_8)
#warn a8_kernel module should be used only on Atari computer-compatible targets
#endif
2017-12-06 23:23:30 +00:00
asm void putchar(byte a) {
tax
lda $347
pha
lda $346
pha
txa
rts
}