Revert to 60-bit bignum chunks; better make test rigging

Still failing the three-chunk bignum unit tests
This commit is contained in:
Simon Brooke 2025-03-14 10:24:38 +00:00
parent e9f49d06a6
commit 4e76fad655
3 changed files with 21 additions and 3 deletions

View file

@ -15,12 +15,12 @@
/**
* The maximum value we will allow in an integer cell.
*/
#define MAX_INTEGER ((__int128_t)0x7fffffffffffffffL)
#define MAX_INTEGER ((__int128_t)0x0fffffffffffffffL)
/**
* @brief Number of value bits in an integer cell
*
*/
#define INTEGER_BITS 63
#define INTEGER_BITS 60
bool zerop( struct cons_pointer arg );