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

14 lines
336 B
Plaintext

// Routines from Commodore PET KERNAL ROM
#if not(CBM_PET)
#warn pet_kernal module should be only used on PET targets
#endif
// CHROUT. Write byte to default output. (If not screen, must call OPEN and CHKOUT beforehands.)
// Input: A = Byte to write.
asm void putchar(byte a) @$FFD2 extern
inline void new_line() {
putchar(13)
}