You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
551 B
31 lines
551 B
.global _start
|
|
_start:
|
|
# Set base value of a0 to 'test failed'
|
|
addi a0, zero, 1
|
|
|
|
# Set A, B values of t0/t1, to test equality
|
|
addi t0, zero, 0xA
|
|
addi t1, zero, 0xB
|
|
beq t0, t1, eq0
|
|
|
|
# Inequality passed, now test equality
|
|
addi t0, zero, 0xA
|
|
addi t1, zero, 0xA
|
|
beq t0, t1, eq1
|
|
|
|
# On failure, return
|
|
ebreak
|
|
|
|
eqNeg:
|
|
# All passed
|
|
addi a0, zero, 0
|
|
ebreak
|
|
|
|
eq0:
|
|
# Inequality failed
|
|
ebreak
|
|
|
|
eq1:
|
|
# Equality passed ; now try to test a negative offset case
|
|
beq t0, t1, eqNeg
|
|
ebreak
|
|
|