1 /* Disassemble WDC 65816 instructions.
2 Copyright 1995, 1998, 2000, 2001, 2002, 2005
3 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
27 static fprintf_ftype fpr
;
29 static struct disassemble_info
*local_info
;
31 static void print_operand
PARAMS ((int, char *, int *));
34 static char *lname
[] = { "r0","r1","r2","r3","r4","r5","r6","r7","s0" };
40 if (val
>= 0x10 && val
<= 0x20)
41 return lname
[(val
- 0x10) / 2];
46 print_operand (lookup
, format
, args
)
56 switch (c
= *format
++)
59 val
= args
[(*format
++) - '0'];
63 name
= findname (val
);
65 fpr (stream
, "%s", name
);
68 local_info
->print_address_func (val
, local_info
);
71 fpr (stream
, "0x%x", val
);
75 fpr (stream
, "%c", c
);
82 print_insn_w65 (memaddr
, info
)
84 struct disassemble_info
*info
;
87 unsigned char insn
[4];
88 const struct opinfo
*op
;
93 stream
= info
->stream
;
94 fpr
= info
->fprintf_func
;
96 for (i
= 0; i
< 4 && status
== 0; i
++)
98 status
= info
->read_memory_func (memaddr
+ i
, insn
+ i
, 1, info
);
101 for (op
= optable
; op
->val
!= insn
[0]; op
++)
104 fpr (stream
, "%s", op
->name
);
106 /* Prepare all the posible operand values. */
109 int asR_W65_ABS8
= insn
[1];
110 int asR_W65_ABS16
= (insn
[2] << 8) + asR_W65_ABS8
;
111 int asR_W65_ABS24
= (insn
[3] << 16) + asR_W65_ABS16
;
112 int asR_W65_PCR8
= ((char) (asR_W65_ABS8
)) + memaddr
+ 2;
113 int asR_W65_PCR16
= ((short) (asR_W65_ABS16
)) + memaddr
+ 3;