Skip to content

Commit

Permalink
feat: add tload/tstore to execute_opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
obatirou committed Aug 27, 2024
1 parent cddaf2c commit 6e4a678
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions crates/evm/src/interpreter.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,14 @@ impl EVMImpl of EVMTrait {
// JUMPDEST
return self.exec_jumpdest();
}
if opcode == 92 {
// TLOAD
return self.exec_tload();
}
if opcode == 93 {
// TSTORE
return self.exec_tstore();
}
if opcode == 95 {
// PUSH0
return self.exec_push0();
Expand Down

0 comments on commit 6e4a678

Please sign in to comment.