1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-10 20:29:35 +00:00
millfork/include/stdio.mfk

10 lines
192 B
Plaintext
Raw Normal View History

2017-12-07 00:23:30 +01: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
}
}