1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-21 09:16:34 +00:00

Add nullchar constant, NULLCHAR feature, and vectrex encoding

This commit is contained in:
Karol Stasiak
2019-08-16 00:46:11 +02:00
parent 263647c59c
commit 960d16fa18
10 changed files with 139 additions and 64 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ asm void putstrz(pointer hl) @$5550 extern
void putstrz(pointer str) {
byte index
index = 0
while str[index] != 0 {
while str[index] != nullchar {
putchar(str[index])
index += 1
}