DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / inlineasm / thumb / asmconst.py
1234567891011
# test constants in assembler @micropython.asm_thumb def c1(): movwt(r0, 0xFFFFFFFF) movwt(r1, 0xF0000000) sub(r0, r0, r1) print(hex(c1()))