1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-06 07:18:40 +10:00
collapseos/apps/lib
Clanmaster21 67adc6fcfc
Removed skip leading zeroes, added skip first multiply
Now instead of skipping leading zeroes, the first digit is loaded directly into hl without first multiplying by 10. This means the first loop is skipped in the overhead, making the method 2-3 times faster overall, and is now faster for the more common fewer digit cases too. The number of bytes is exactly the same, and the inner loop is slightly faster too thanks to no longer needing to load a into c.
To be more precise about the speed increase over the current code, for decimals of length 1 it'll be 3.18x faster, for decimals of length 2, 2.50x faster, for length 3, 2.31x faster, for length 4, 2.22x faster, and for length 5 and above, at least 2.03x faster. In terms of cycles, this is around 100+(132*length) cycles saved per decimal.
2019-10-20 22:26:07 +01:00
..
parse.asm Removed skip leading zeroes, added skip first multiply 2019-10-20 22:26:07 +01:00
README.md apps/ed: add (dummy) line number processing 2019-07-13 11:53:30 -04:00
util.asm ed: add support for 'a' and 'i' 2019-07-14 17:35:21 -04:00

Common code used by more than one app, but not by the kernel.