Skip to content

Commit

Permalink
feat: enable mcopy" (#917)
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 9, 2024
1 parent 6d60b97 commit cf435ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/evm/src/interpreter.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,10 @@ impl EVMImpl of EVMTrait {
// TSTORE
return self.exec_tstore();
}
if opcode == 94 {
// MCOPY
return self.exec_mcopy();
}
if opcode == 95 {
// PUSH0
return self.exec_push0();
Expand Down

0 comments on commit cf435ab

Please sign in to comment.