Searched refs:M68K_REG_A0 (Results 1 – 6 of 6) sorted by relevance
/external/capstone/arch/M68K/ |
D | M68KInstPrinter.c | 151 case M68K_AM_REG_DIRECT_ADDR: SStream_concat(O, "a%d", (op->reg - M68K_REG_A0)); break; in printAddressingMode() 152 case M68K_AM_REGI_ADDR: SStream_concat(O, "(a%d)", (op->reg - M68K_REG_A0)); break; in printAddressingMode() 153 case M68K_AM_REGI_ADDR_POST_INC: SStream_concat(O, "(a%d)+", (op->reg - M68K_REG_A0)); break; in printAddressingMode() 154 case M68K_AM_REGI_ADDR_PRE_DEC: SStream_concat(O, "-(a%d)", (op->reg - M68K_REG_A0)); break; in printAddressingMode() 155 …%x(a%d)", op->mem.disp < 0 ? "-" : "", abs(op->mem.disp), (op->mem.base_reg - M68K_REG_A0)); break; in printAddressingMode() 199 SStream_concat(O, "a%d,%s", op->mem.base_reg - M68K_REG_A0, s_spacing); in printAddressingMode()
|
D | M68KDisassembler.c | 363 op->mem.base_reg = M68K_REG_A0 + (instruction & 7); in get_with_index_address_mode() 369 op->mem.index_reg = M68K_REG_A0 + EXT_INDEX_REGISTER(extension); in get_with_index_address_mode() 393 …op->mem.index_reg = (EXT_INDEX_AR(extension) ? M68K_REG_A0 : M68K_REG_D0) + EXT_INDEX_REGISTER(ext… in get_with_index_address_mode() 401 op->mem.base_reg = M68K_REG_A0 + (instruction & 7); in get_with_index_address_mode() 408 op->mem.base_reg = M68K_REG_A0 + (instruction & 7); in get_with_index_address_mode() 438 op->reg = M68K_REG_A0 + (instruction & 7); in get_ea_mode_op() 445 op->reg = M68K_REG_A0 + (instruction & 7); in get_ea_mode_op() 451 op->reg = M68K_REG_A0 + (instruction & 7); in get_ea_mode_op() 457 op->reg = M68K_REG_A0 + (instruction & 7); in get_ea_mode_op() 463 op->mem.base_reg = M68K_REG_A0 + (instruction & 7); in get_ea_mode_op() [all …]
|
/external/capstone/bindings/java/capstone/ |
D | M68k_const.java | 16 public static final int M68K_REG_A0 = 9; field in M68k_const
|
/external/capstone/bindings/python/capstone/ |
D | m68k_const.py | 13 M68K_REG_A0 = 9 variable
|
/external/capstone/include/capstone/ |
D | m68k.h | 32 M68K_REG_A0, enumerator
|
/external/capstone/contrib/objdump/ |
D | objdump-m68k.py | 187 str += format("a%d,%s" % ( op.mem.base_reg - M68K_REG_A0, s_spacing))
|