Files
micropython/tests/inlineasm/thumb/asmpushpop.py
Alessandro Gatti a5270c84cf tests/inlineasm: Make room for RV32IMC inline asm tests.
Thumb/Thumb2 tests are now into their own subdirectory, as
RV32IMC-specific tests will be added as part of the RV32 inline
assembler support.

Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
2025-01-01 10:44:50 +01:00

22 lines
321 B
Python

@micropython.asm_thumb
def f(r0, r1, r2):
push({r0})
push({r1, r2})
pop({r0})
pop({r1, r2})
@micropython.asm_thumb
def g():
b(START)
label(SUBROUTINE)
push({lr}) # push return address
mov(r0, 7)
pop({pc}) # return
label(START)
bl(SUBROUTINE)
print(f(0, 1, 2))
print(g())