Este commit está contenido en:
Virgil Dupras 2019-11-07 12:13:00 -05:00
padre ca84b5dac8
commit a13a94bbc7
Se han modificado 2 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -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

Ver fichero

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