1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-04 16:29:52 +00:00
millfork/include/a8_kernel.mfk
2019-06-26 15:51:09 +02:00

19 lines
259 B
Plaintext

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