mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-24 22:28:50 -04:00
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")
|