Skip to content

Commit

Permalink
Add MCOPY opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoopmann committed Mar 15, 2024
1 parent 42b5d18 commit 8ff3ec2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ pub enum Opcode {
MSIZE,
GAS,
JUMPDEST,
MCOPY,
PUSH0,
PUSH1,
PUSH2,
Expand Down Expand Up @@ -226,6 +227,7 @@ impl Opcode {
0x59 => Opcode::MSIZE,
0x5a => Opcode::GAS,
0x5b => Opcode::JUMPDEST,
0x5E => Opcode::MCOPY,
0x5F => Opcode::PUSH0,
0x60 => Opcode::PUSH1,
0x61 => Opcode::PUSH2,
Expand Down

0 comments on commit 8ff3ec2

Please sign in to comment.