1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-02 18:29:50 +00:00
millfork/include/cpc.mfk

12 lines
215 B
Plaintext
Raw Normal View History

2018-12-19 18:02:29 +00:00
2018-12-19 21:21:51 +00:00
#if not(AMSTRAD_CPC)
#warn cpc module should be only used on Amstrad CPC-compatible targets
2018-12-19 18:02:29 +00:00
#endif
asm void putchar(byte register(a) char) @$BB5A extern
2018-12-19 18:02:29 +00:00
inline void new_line() {
putchar(13)
putchar(10)
}