Lines Matching full:system
35 System.out.printf("0x%x:\t%s\t%s\n", ins.address, ins.mnemonic, ins.opStr);
40 System.out.printf("\top_count: %d\n", operands.op.length);
44 System.out.printf("\t\toperands[%d].type: REG = %s\n", c, ins.regName(i.value.reg));
46 System.out.printf("\t\toperands[%d].type: ACREG = %s\n", c, i.value.reg);
48 System.out.printf("\t\toperands[%d].type: IMM = 0x%x\n", c, i.value.imm);
50 System.out.printf("\t\toperands[%d].type: MEM\n", c);
52 System.out.printf("\t\t\toperands[%d].mem.base: REG = %s\n", c, ins.regName(i.value.mem.base));
54 System.out.printf("\t\t\toperands[%d].mem.index: REG = %s\n", c, ins.regName(i.value.mem.index));
56 System.out.printf("\t\t\toperands[%d].mem.length: 0x%x\n", c, i.value.mem.disp);
58 System.out.printf("\t\t\toperands[%d].mem.disp: 0x%x\n", c, i.value.mem.disp);
64 System.out.printf("\tConditional code: %d\n", operands.cc);
76 System.out.println(new String(new char[16]).replace("\0", "*"));
77 System.out.println("Platform: " + test.comment);
78 System.out.println("Code: " + Test.stringToHex(test.code));
79 System.out.println("Disasm:");
87 System.out.println();
89 System.out.printf("0x%x:\n\n", (all_ins[all_ins.length-1].address + all_ins[all_ins.length-1].size));