1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-11 12:29:46 +00:00
millfork/include/a8_kernel.mfk

19 lines
259 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 a) {
2018-12-17 17:18:29 +01:00
? tax
2017-12-07 00:23:30 +01:00
lda $347
pha
lda $346
pha
2018-12-17 17:18:29 +01:00
? txa
2017-12-07 00:23:30 +01:00
rts
2018-12-17 17:18:29 +01:00
}
inline void new_line() {
putchar($9b)
}