Thumb/Thumb2 tests are now into their own subdirectory, as RV32IMC-specific tests will be added as part of the RV32 inline assembler support. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
8 lines
236 B
Python
8 lines
236 B
Python
import frozen_asm_thumb as frozen_asm
|
|
|
|
print(frozen_asm.asm_add(1, 2))
|
|
print(frozen_asm.asm_add1(3))
|
|
print(frozen_asm.asm_cast_bool(0), frozen_asm.asm_cast_bool(3))
|
|
print(frozen_asm.asm_shift_int(4))
|
|
print(frozen_asm.asm_shift_uint(4))
|