1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-10 10:28:55 +00:00
millfork/include/pet_kernal.mfk

14 lines
351 B
Plaintext
Raw Normal View History

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