You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
9 lines
127 B
Python
9 lines
127 B
Python
@micropython.asm_thumb
|
|
def f(r0, r1, r2):
|
|
push({r0})
|
|
push({r1, r2})
|
|
pop({r0})
|
|
pop({r1, r2})
|
|
|
|
print(f(0, 1, 2))
|