mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 01:40:34 +02:00
27 lines
315 B
Python
27 lines
315 B
Python
# This tests small int range for 32-bit machine
|
|
|
|
a = 0x3fffff
|
|
print(a)
|
|
a *= 0x10
|
|
print(a)
|
|
a *= 0x10
|
|
print(a)
|
|
a += 0xff
|
|
print(a)
|
|
# This would overflow
|
|
#a += 1
|
|
|
|
a = -0x3fffff
|
|
print(a)
|
|
a *= 0x10
|
|
print(a)
|
|
a *= 0x10
|
|
print(a)
|
|
a -= 0xff
|
|
print(a)
|
|
# This still doesn't overflow
|
|
a -= 1
|
|
print(a)
|
|
# This would overflow
|
|
#a -= 1
|