Ejemplo n.º 1
0
 public cmp_o32_rAX_Id(int blockStart, int eip, int prefices, PeekableInputStream input) {
   super(blockStart, eip);
   immd = Modrm.Id(input);
 }
Ejemplo n.º 2
0
 public test_Ed_Id_mem(int blockStart, int eip, int prefices, PeekableInputStream input) {
   super(blockStart, eip);
   int modrm = input.readU8();
   op1 = Modrm.getPointer(prefices, modrm, input);
   immd = Modrm.Id(input);
 }
Ejemplo n.º 3
0
 public test_Ed_Id(int blockStart, int eip, int prefices, PeekableInputStream input) {
   super(blockStart, eip);
   int modrm = input.readU8();
   op1Index = Modrm.Ed(modrm);
   immd = Modrm.Id(input);
 }