mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-03 18:04:46 +00:00
14 lines
200 B
Plaintext
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
|
|
} |