diff options
Diffstat (limited to 'tests/inlineasm/asmblbx.py')
-rw-r--r-- | tests/inlineasm/asmblbx.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/inlineasm/asmblbx.py b/tests/inlineasm/asmblbx.py index d08c0ed6b..43585dddc 100644 --- a/tests/inlineasm/asmblbx.py +++ b/tests/inlineasm/asmblbx.py @@ -1,5 +1,6 @@ # test bl and bx instructions + @micropython.asm_thumb def f(r0): # jump over the internal functions @@ -17,5 +18,6 @@ def f(r0): bl(func1) bl(func2) + print(f(0)) print(f(1)) |