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:
+1
-1
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user