blob: 8cf92b301f76d43700a6c61ebf7ca4f7ce575460 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@micropython.asm_thumb
def clz(r0):
clz(r0, r0)
print(clz(0xf0))
print(clz(0x8000))
@micropython.asm_thumb
def rbit(r0):
rbit(r0, r0)
print(hex(rbit(0xf0)))
print(hex(rbit(0x8000)))
|