micropython: add micropython component

This commit is contained in:
KY-zhang-X
2022-09-29 12:10:37 +08:00
parent 1514f1cb9b
commit dd76146324
2679 changed files with 354110 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# tests transition from small to large int representation by left-shift operation
for i in range(1, 17):
for shift in range(70):
print(i, '<<', shift, '=', i << shift)
# test bit-shifting negative integers
for i in range(8):
print(-100000000000000000000000000000 << i)
print(-100000000000000000000000000001 << i)
print(-100000000000000000000000000002 << i)
print(-100000000000000000000000000003 << i)
print(-100000000000000000000000000004 << i)
print(-100000000000000000000000000000 >> i)
print(-100000000000000000000000000001 >> i)
print(-100000000000000000000000000002 >> i)
print(-100000000000000000000000000003 >> i)
print(-100000000000000000000000000004 >> i)
# shl by zero
print((1<<70) << 0)