-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2902 from o1-labs/dw/slt-tests
o1vm/riscv32im: add tests for SLT
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.section .text | ||
.globl _start | ||
|
||
_start: | ||
|
||
# SLT with t0 < t1 (Expected: 1) | ||
li t0, 100 # t0 = 100 | ||
li t1, 200 # t1 = 200 | ||
slt t2, t0, t1 # t2 = (t0 < t1) ? 1 : 0 (Expected: t2 = 1) | ||
|
||
# SLT with t3 > t4 (Expected: 0) | ||
li t3, 300 # t3 = 300 | ||
li t4, 200 # t4 = 200 | ||
slt t5, t3, t4 # t5 = (t3 < t4) ? 1 : 0 (Expected: t5 = 0) | ||
|
||
# SLT with t0 == t1 (Expected: 0) | ||
li t0, 150 # t6 = 150 | ||
li t1, 150 # t7 = 150 | ||
slt t6, t0, t1 # t6 = (t0 < t1) ? 1 : 0 (Expected: t6 = 0) | ||
|
||
# Custom exit syscall | ||
li a0, 0 | ||
li a1, 0 | ||
li a2, 0 | ||
li a3, 0 | ||
li a4, 0 | ||
li a5, 0 | ||
li a6, 0 | ||
li a7, 42 | ||
ecall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters