1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-30 21:29:36 +00:00
millfork/include/cpc.mfk
2018-12-19 19:02:29 +01:00

12 lines
202 B
Plaintext

#if not(ARMSTRAD_CPC)
#warn cpc module should be only used on Armstrad CPC-compatible targets
#endif
asm void putchar(byte a) @$BB5A extern
inline void new_line() {
putchar(13)
putchar(10)
}