summaryrefslogtreecommitdiffstatshomepage
path: root/tests/inlineasm/asmpushpop.py
blob: 74e729dfa25347c33b4b3979913752cc4aa6f035 (plain) (blame)
1
2
3
4
5
6
7
8
9
@micropython.asm_thumb
def f(r0, r1, r2):
    push({r0})
    push({r1, r2})
    pop({r0})
    pop({r1, r2})


print(f(0, 1, 2))