Ejemplo n.º 1
0
 public bt_Ew_Gw(int blockStart, int eip, int prefices, PeekableInputStream input) {
   super(blockStart, eip);
   int modrm = input.readU8();
   op1Index = Modrm.Ew(modrm);
   op2Index = Modrm.Gw(modrm);
 }
Ejemplo n.º 2
0
 public mov_Gw_Ew_mem(int blockStart, int eip, int prefices, PeekableInputStream input) {
   super(blockStart, eip);
   int modrm = input.readU8();
   op1Index = Modrm.Gw(modrm);
   op2 = Modrm.getPointer(prefices, modrm, input);
 }