Stage 10: passing tests
This commit is contained in:
15
bench/tests/op/sw.s
Normal file
15
bench/tests/op/sw.s
Normal file
@@ -0,0 +1,15 @@
|
||||
# expected: 000001AB
|
||||
.text
|
||||
_start:
|
||||
# Create an instruction bytes per bytes
|
||||
# addi x31, x0, 0x1AB -> 0x1AB00F93
|
||||
lui x1, 0x0F93
|
||||
srli x1, x1, 12
|
||||
lui x2, 0x1AB0
|
||||
slli x2, x2, 4
|
||||
or x1, x1, x2
|
||||
sw x1, 28(x0)
|
||||
nop
|
||||
|
||||
# Instruction will be written here
|
||||
nop
|
||||
Reference in New Issue
Block a user