mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-05 00:05:44 +00:00
9 lines
239 B
Plaintext
9 lines
239 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
|