mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-16 16:31:04 +00:00
12 lines
182 B
Plaintext
12 lines
182 B
Plaintext
|
|
#if not(NEC_PC_88)
|
|
#warn pc88 module should be only used on PC-88 targets
|
|
#endif
|
|
|
|
asm void putchar(byte a) @$3e0d extern
|
|
|
|
inline void new_line() {
|
|
putchar(13)
|
|
putchar(10)
|
|
}
|