cvw/tests/custom/simple/lbu_test.s

20 lines
159 B
ArmAsm
Raw Normal View History

.section .text
.global lbu_test
.type lbu_test, @function
lbu_test:
li t0, 0x80000
lbu t1, 0(t0)
pass:
li a0, 0
done:
ret
fail:
li a0, -1
j done