Crate dez80

Source
Expand description

Provides Z80 disassembly and analysis models and functions.

Re-exports§

pub use instruction::DecodingState;
pub use instruction::Instruction;

Modules§

instruction
Contains models and functions to define, decode, and format Z80 instructions and their components.
register
Contains models and functions used to manage a Z80 processor’s internal storage, including single registers, register pairs, and status flags.

Structs§

InstructionDecoder
Represents an instruction decoder that maintains a state. Its main use case is to decode instructions progressively byte by byte, when a data source cannot implement Read.