Stage 9: Full implemntation + passing tests

This commit is contained in:
2025-11-07 18:03:45 +01:00
parent 2117f8155e
commit 036f432d76
10 changed files with 197 additions and 9 deletions

15
bench/tests/op/bltu.s Normal file
View File

@@ -0,0 +1,15 @@
# expected: 000001BC, 000002BC
.text
_start:
add x1, x0, 28
add x2, x0, 28
bltu x1, x2, finish # Should not jump
add x31, x0, 0x1BC
add x1, x0, 12
add x2, x0, 24
bltu x1, x2, finish # Should jump to finish
add x31, x0, 0x3BC
finish:
add x31, x0, 0x2BC