Browse Source

fix typos

pull/75/head
Virgil Dupras 4 years ago
parent
commit
a13a94bbc7
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      kernel/fnt/mgm.asm
  2. +1
    -1
      tools/font_compile.pl

+ 1
- 1
kernel/fnt/mgm.asm 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


+ 1
- 1
tools/font_compile.pl View File

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

Loading…
Cancel
Save