diff options
Diffstat (limited to 'tests/inlineasm/asmbitops.py')
-rw-r--r-- | tests/inlineasm/asmbitops.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/inlineasm/asmbitops.py b/tests/inlineasm/asmbitops.py deleted file mode 100644 index d1c8a9823..000000000 --- a/tests/inlineasm/asmbitops.py +++ /dev/null @@ -1,16 +0,0 @@ -@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))) |