1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-16 18:29:31 +00:00
millfork/include/bbc_kernal.mfk

15 lines
340 B
Plaintext
Raw Permalink Normal View History

2018-04-02 21:40:40 +00:00
#if not(BBC_MICRO)
#warn bbc_kernal module should be used only on BBC Micro-compatible targets
#endif
2018-04-02 21:40:40 +00:00
// OSASCI. Write a character (to screen) from A plus LF if (A)=&0D
// Input: A = Byte to write.
asm void putchar(byte register(a) char) @$FFE3 extern
2018-12-17 16:18:29 +00:00
inline void new_line() {
putchar(13)
}
const array __basic_padding = [$EA, $EA]