mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
11 lines
139 B
Plaintext
11 lines
139 B
Plaintext
|
|
noinline asm void putchar(byte register(a) character) {
|
|
clr $6f
|
|
jsr [$a002]
|
|
rts
|
|
}
|
|
|
|
inline void new_line() {
|
|
putchar(13)
|
|
}
|