1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! EVM opcode implementations.

#[macro_use]
pub mod macros;

pub mod arithmetic;
pub mod bitwise;
pub mod control;
pub mod host;
pub mod host_env;
pub mod i256;
pub mod memory;
pub mod opcode;
pub mod stack;
pub mod system;

pub use opcode::{Instruction, OpCode, OPCODE_JUMPMAP};