summaryrefslogtreecommitdiffstatshomepage
path: root/tests/inlineasm/asmpushpop.py
blob: 99566a7558fa41fc4582d3e5444e42e5d6298e19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@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())