1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-08-08 03:25:11 +00:00
Files
millfork/include/a8_kernel.mfk
2018-07-12 19:39:25 +02:00

14 lines
200 B
Plaintext

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