1 /*****************************************************************************/
5 /* Opcode and addressing mode definitions */
9 /* (C) 2001 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@cc65.org */
15 /* This software is provided 'as-is', without any expressed or implied */
16 /* warranty. In no event will the authors be held liable for any damages */
17 /* arising from the use of this software. */
19 /* Permission is granted to anyone to use this software for any purpose, */
20 /* including commercial applications, and to alter it and redistribute it */
21 /* freely, subject to the following restrictions: */
23 /* 1. The origin of this software must not be misrepresented; you must not */
24 /* claim that you wrote the original software. If you use this software */
25 /* in a product, an acknowledgment in the product documentation would be */
26 /* appreciated but is not required. */
27 /* 2. Altered source versions must be plainly marked as such, and must not */
28 /* be misrepresented as being the original software. */
29 /* 3. This notice may not be removed or altered from any source */
32 /*****************************************************************************/
46 /*****************************************************************************/
48 /*****************************************************************************/
52 /* Definitions for the possible opcodes */
127 OPC_COUNT /* Number of opcodes available */
130 /* Addressing modes (bitmapped). */
132 AM_IMP = 0x0001, /* implicit */
133 AM_ACC = 0x0002, /* accumulator */
134 AM_IMM = 0x0004, /* immidiate */
135 AM_ZP = 0x0008, /* zeropage */
136 AM_ZPX = 0x0010, /* zeropage,X */
137 AM_ABS = 0x0020, /* absolute */
138 AM_ABSX = 0x0040, /* absolute,X */
139 AM_ABSY = 0x0080, /* absolute,Y */
140 AM_ZPX_IND = 0x0100, /* (zeropage,x) */
141 AM_ZP_INDY = 0x0200, /* (zeropage),y */
142 AM_ZP_IND = 0x0400, /* (zeropage) */
143 AM_BRA = 0x0800 /* branch */
146 /* Branch conditions */
160 #define OF_NONE 0x0000U /* No additional information */
161 #define OF_UBRA 0x0001U /* Unconditional branch */
162 #define OF_CBRA 0x0002U /* Conditional branch */
163 #define OF_ZBRA 0x0004U /* Branch on zero flag condition */
164 #define OF_FBRA 0x0008U /* Branch on cond set by a load */
165 #define OF_LBRA 0x0010U /* Jump/branch is long */
166 #define OF_RET 0x0020U /* Return from function */
167 #define OF_LOAD 0x0040U /* Register load */
168 #define OF_XFR 0x0080 /* Transfer instruction */
169 #define OF_BRA (OF_UBRA|OF_CBRA) /* Operation is a jump/branch */
170 #define OF_DEAD (OF_UBRA|OF_RET) /* Dead end - no exec behind this point */
172 /* Opcode description */
174 opc_t OPC; /* Opcode */
175 char Mnemo[4]; /* Mnemonic */
176 unsigned char Size; /* Size, 0 = check addressing mode */
177 unsigned char Use; /* Registers used by this insn */
178 unsigned char Chg; /* Registers changed by this insn */
179 unsigned char Info; /* Additional information */
182 /* Opcode description table */
183 extern const OPCDesc OPCTable[OPC_COUNT];
187 /*****************************************************************************/
189 /*****************************************************************************/
193 const OPCDesc* FindOpcode (const char* OPC);
194 /* Find the given opcode and return the opcode description. If the opcode was
195 * not found, NULL is returned.
198 unsigned GetInsnSize (opc_t OPC, am_t AM);
199 /* Return the size of the given instruction */
201 #if defined(HAVE_INLINE)
202 INLINE const OPCDesc* GetOPCDesc (opc_t OPC)
203 /* Get an opcode description */
205 /* Return the description */
206 return &OPCTable [OPC];
209 # define GetOPCDesc(OPC) (&OPCTable [(OPC)])
212 #if defined(HAVE_INLINE)
213 INLINE unsigned char GetOPCInfo (opc_t OPC)
214 /* Get opcode information */
216 /* Return the info */
217 return OPCTable[OPC].Info;
220 # define GetOPCInfo(OPC) (OPCTable[(OPC)].Info)
223 unsigned char GetAMUseInfo (am_t AM);
224 /* Get usage info for the given addressing mode (addressing modes that use
225 * index registers return REG_r info for these registers).
228 opc_t GetInverseBranch (opc_t OPC);
229 /* Return a branch that reverse the condition of the branch given in OPC */
231 opc_t MakeShortBranch (opc_t OPC);
232 /* Return the short version of the given branch. If the branch is already
233 * a short branch, return the opcode unchanged.
236 opc_t MakeLongBranch (opc_t OPC);
237 /* Return the long version of the given branch. If the branch is already
238 * a long branch, return the opcode unchanged.
241 bc_t GetBranchCond (opc_t OPC);
242 /* Get the condition for the conditional branch in OPC */
244 bc_t GetInverseCond (bc_t BC);
245 /* Return the inverse condition of the given one */
247 opc_t GetLongBranch (bc_t BC);
248 /* Return a long branch for the given branch condition */
250 opc_t GetShortBranch (bc_t BC);
251 /* Return a short branch for the given branch condition */
255 /* End of opcodes.h */