Skip to content

Commit

Permalink
Always write 4 bytes for syscall instr
Browse files Browse the repository at this point in the history
  • Loading branch information
pcw109550 committed May 21, 2024
1 parent 7973aaf commit 33afd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rvgo/test/syscall_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/ethereum-optimism/asterisc/rvgo/slow"
)

var syscallInsn = []byte{0x73}
var syscallInsn = []byte{0x73, 0x00, 0x00, 0x00}

func staticOracle(t *testing.T, preimageData []byte) *testOracle {
return &testOracle{
Expand Down

0 comments on commit 33afd26

Please sign in to comment.