1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-09 16:29:34 +00:00
millfork/include/a8_kernel.mfk

19 lines
274 B
Plaintext
Raw Normal View History

#if not(ATARI_8)
#warn a8_kernel module should be used only on Atari computer-compatible targets
#endif
noinline asm void putchar(byte register(a) char) {
2018-12-17 16:18:29 +00:00
? tax
2017-12-06 23:23:30 +00:00
lda $347
pha
lda $346
pha
2018-12-17 16:18:29 +00:00
? txa
2017-12-06 23:23:30 +00:00
rts
2018-12-17 16:18:29 +00:00
}
inline void new_line() {
putchar($9b)
}