Lines Matching +full:0 +full:x9e
20 …\x84\x85\x86\x87\x8a\x8b\x8c\x94\x95\xa7\x10\xaf\x10\x9e\x60\x7f\x9e\x6b\x7f\x00\x9e\xd6\x10\x00\x…
21 HCS08_CODE = b"\x32\x10\x00\x9e\xae\x9e\xce\x7f\x9e\xbe\x10\x00\x9e\xfe\x7f\x3e\x10\x00\x9e\xf3\x7f…
44 return " ".join("0x%02X" % c for c in string)
46 return " ".join("0x%02X" % ord(c) for c in string)
54 #print("0x%x:\t%s\t%s\t%s" % (insn.address, binascii.hexlify(bytearray(insn.bytes)), \
55 print("0x%04X: %s\t%s\t%s" % (insn.address, to_hex_short_uc(insn.bytes), \
59 if insn.id == 0:
62 if len(insn.operands) > 0:
64 c = 0
68 if (((c == 0) and (insn.flags & M680X_FIRST_OP_IN_MNEM)) or
78 print("\t\toperands[%u].type: DIRECT = 0x%02X" % (c, i.direct_addr))
84 print("\t\toperands[%u].type: EXTENDED %s = 0x%04X" % (c, indirect, i.ext.address))
86 print("\t\toperands[%u].type: RELATIVE = 0x%04X" % (c, i.rel.address))
97 … if (i.idx.offset_bits != 0) and (i.idx.offset_reg == M680X_REG_INVALID) and (i.idx.inc_dec == 0):
100 print("\t\t\toffset address: 0x%04X" % i.idx.offset_addr)
102 if i.idx.inc_dec != 0:
107 if i.idx.inc_dec > 0:
113 if (i.size != 0):
122 if len(regs_read) > 0:
128 if len(regs_write) > 0:
134 if len(insn.groups) > 0:
151 for insn in md.disasm(code, 0x1000):