MemType

This structure gives information on the memory access type, according to the formula BaseRegister + IndexRegister*Scale + Displacement]

struct MemType {
const(int) BaseRegister;
const(int) IndexRegister;
const(int) Scale;
const(long) Displacement;
}

Meta