예제 #1
0
 public cmp_o32_rAX_Id(int blockStart, int eip, int prefices, PeekableInputStream input) {
   super(blockStart, eip);
   immd = Modrm.Id(input);
 }
예제 #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);
 }
예제 #3
0
파일: test_Ed_Id.java 프로젝트: agimat/JPC
 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);
 }