Searched refs:RegOpcode (Results 1 – 1 of 1) sorted by relevance
128 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, in ModRMByte() argument130 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); in ModRMByte()131 return RM | (RegOpcode << 3) | (Mod << 6); in ModRMByte()