1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! FuelVM opcodes representation
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "std", doc = include_str!("../README.md"))]
#![warn(missing_docs)]
mod instruction;
mod opcode;
mod panic_reason;
mod macros;
pub use fuel_types::{Immediate06, Immediate12, Immediate18, Immediate24, RegisterId, Word};
pub use instruction::Instruction;
pub use opcode::{Opcode, OpcodeRepr};
pub use panic_reason::{InstructionResult, PanicReason};