1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-31 18:41:30 +00:00
millfork/include/stdio.mfk

10 lines
192 B
Plaintext
Raw Normal View History

2017-12-06 23:23:30 +00:00
// target-independent standard I/O routines
void putstr(pointer str, byte len) {
byte index
index = 0
while (index != len) {
putchar(str[index])
index += 1
}
}