fix typos

This commit is contained in:
Virgil Dupras 2019-11-07 12:13:00 -05:00
parent ca84b5dac8
commit a13a94bbc7
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ fntGet:
cp 0x20
ret c ; A < 0x20. Z was unset by cp
cp 0x7f
jr nc, unsetZ ; A >= 0x7f. Z might be set
jp nc, unsetZ ; A >= 0x7f. Z might be set
push af ; --> lvl 1
push bc ; --> lvl 2

View File

@ -26,5 +26,5 @@ while (<$handle>) {
$num += (1 << $i);
}
}
printf pack('C', $num);
print pack('C', $num);
}