Type Alias lc3_ensemble::ast::IOffset
source · pub type IOffset<const N: u32> = Offset<i16, N>;Expand description
A value representing a signed offset or a signed immediate value.
N indicates the maximum bit size of this offset/immediate value.
For example, IOffset<5> is used to represent ADD/AND’s imm5 operand.
Aliased Type§
struct IOffset<const N: u32>(/* private fields */);