1 /* Disassemble WDC 65816 instructions.
2 Copyright 1995, 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26 static fprintf_ftype fpr;
28 static struct disassemble_info *local_info;
30 static void print_operand PARAMS ((int, char *, unsigned int *));
33 static char *lname[] = { "r0","r1","r2","r3","r4","r5","r6","r7","s0" };
39 if (val >= 0x10 && val <= 0x20)
40 return lname[(val - 0x10) / 2];
45 print_operand (lookup, format, args)
55 switch (c = *format++)
58 val = args[(*format++) - '0'];
62 name = findname (val);
64 fpr (stream, "%s", name);
67 local_info->print_address_func (val, local_info);
70 fpr (stream, "0x%x", val);
74 fpr (stream, "%c", c);
81 print_insn_w65 (memaddr, info)
83 struct disassemble_info *info;
86 unsigned char insn[4];
87 const struct opinfo *op;
92 stream = info->stream;
93 fpr = info->fprintf_func;
95 for (i = 0; i < 4 && status == 0; i++)
97 status = info->read_memory_func (memaddr + i, insn + i, 1, info);
100 for (op = optable; op->val != insn[0]; op++)
103 fpr (stream, "%s", op->name);
105 /* Prepare all the posible operand values. */
108 int asR_W65_ABS8 = insn[1];
109 int asR_W65_ABS16 = (insn[2] << 8) + asR_W65_ABS8;
110 int asR_W65_ABS24 = (insn[3] << 16) + asR_W65_ABS16;
111 int asR_W65_PCR8 = ((char) (asR_W65_ABS8)) + memaddr + 2;
112 int asR_W65_PCR16 = ((short) (asR_W65_ABS16)) + memaddr + 3;