3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-03 20:24:38 +00:00

Use digit separators for large decimal integers

This commit is contained in:
Emil J. Tywoniak 2025-11-24 12:28:30 +01:00
parent 8f00c1824f
commit 8e2038c419
4 changed files with 9 additions and 9 deletions

View file

@ -40,10 +40,10 @@ int bindec(unsigned char v)
r += (~((v & 2) - 1)) & 10;
r += (~((v & 4) - 1)) & 100;
r += (~((v & 8) - 1)) & 1000;
r += (~((v & 16) - 1)) & 10000;
r += (~((v & 32) - 1)) & 100000;
r += (~((v & 64) - 1)) & 1000000;
r += (~((v & 128) - 1)) & 10000000;
r += (~((v & 16) - 1)) & 10'000;
r += (~((v & 32) - 1)) & 100'000;
r += (~((v & 64) - 1)) & 1'000'000;
r += (~((v & 128) - 1)) & 10'000'000;
return r;
}