Add xori test.

This commit is contained in:
Hans-Kristian Arntzen 2020-01-31 14:04:01 +01:00
parent 44171820c9
commit 9aab00c6cf
2 changed files with 7 additions and 0 deletions

View File

@ -116,4 +116,5 @@ if (PARALLEL_RSP_TESTS)
rsp_add_test(sltiu)
rsp_add_test(andi)
rsp_add_test(ori)
rsp_add_test(xori)
endif()

6
debug-toolchain/xori.s Normal file
View File

@ -0,0 +1,6 @@
.text
.global main
main:
li $a0, 500
xori $t0, $a0, 50000
break