pub trait VmAdapterInterface<T> {
type Reads;
type Writes;
type ProcessedInstruction;
}
Expand description
The interface between primitive AIR and machine adapter AIR.
Required Associated Types§
Sourcetype ProcessedInstruction
type ProcessedInstruction
The parts of the instruction that should be exposed to the integrator.
This will typically include is_valid
, which indicates whether the trace row
is being used and opcode
to indicate which opcode is being executed if the
VmChip supports multiple opcodes.