mirror of
https://github.com/micropython/micropython.git
synced 2026-04-24 01:40:22 +02:00
d30d5c99af
Signed-off-by: Damien George <damien@micropython.org>
11 lines
125 B
Python
11 lines
125 B
Python
# check if Thumb2/ARMV7M instructions are supported
|
|
|
|
|
|
@micropython.asm_thumb
|
|
def f():
|
|
it(eq)
|
|
nop()
|
|
|
|
|
|
print("thumb2")
|