1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-09 16:29:34 +00:00
millfork/include/pc88.mfk
2018-12-17 17:18:29 +01:00

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)
}