1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00
millfork/include/bbc_kernal.mfk
2018-12-17 17:18:29 +01:00

13 lines
283 B
Plaintext

#if not(BBC_MICRO)
#warn bbc_kernal module should be used only on BBC Micro-compatible targets
#endif
// OSASCI. Write a character (to screen) from A plus LF if (A)=&0D
// Input: A = Byte to write.
asm void putchar(byte a) @$FFE3 extern
inline void new_line() {
putchar(13)
}