You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
14 lines
193 B
Python
14 lines
193 B
Python
@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)))
|