mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 21:04:51 +00:00
12 lines
200 B
Plaintext
12 lines
200 B
Plaintext
|
|
#if not(AMSTRAD_CPC)
|
|
#warn cpc module should be only used on Amstrad CPC-compatible targets
|
|
#endif
|
|
|
|
asm void putchar(byte a) @$BB5A extern
|
|
|
|
inline void new_line() {
|
|
putchar(13)
|
|
putchar(10)
|
|
}
|