2017-02-23 21:08:18 -05:00
|
|
|
# test constant optimisation, with consts that are bignums
|
|
|
|
|
|
|
|
from micropython import const
|
|
|
|
|
|
|
|
# check we can make consts from bignums
|
2021-03-15 09:57:36 -04:00
|
|
|
Z1 = const(0xFFFFFFFF)
|
|
|
|
Z2 = const(0xFFFFFFFFFFFFFFFF)
|
2017-02-23 21:08:18 -05:00
|
|
|
print(hex(Z1), hex(Z2))
|
|
|
|
|
|
|
|
# check arithmetic with bignum
|
|
|
|
Z3 = const(Z1 + Z2)
|
|
|
|
Z4 = const((1 << 100) + Z1)
|
|
|
|
print(hex(Z3), hex(Z4))
|