]> git.sur5r.net Git - cc65/blobdiff - src/cc65/opcodes.h
Add issues from pull request #307.
[cc65] / src / cc65 / opcodes.h
index 4635c4703a57d54be4314bec07092545d2c1a55e..349de32a4dbba3e03d3546cac97f63bcac412288 100644 (file)
@@ -7,7 +7,7 @@
 /*                                                                           */
 /*                                                                           */
 /* (C) 2001-2004 Ullrich von Bassewitz                                       */
-/*               Römerstraße 52                                              */
+/*               Roemerstrasse 52                                            */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
@@ -203,8 +203,8 @@ extern const OPCDesc OPCTable[OP65_COUNT];
 
 const OPCDesc* FindOP65 (const char* OPC);
 /* Find the given opcode and return the opcode description. If the opcode was
- * not found, NULL is returned.
- */
+** not found, NULL is returned.
+*/
 
 unsigned GetInsnSize (opc_t OPC, am_t AM);
 /* Return the size of the given instruction */
@@ -233,21 +233,21 @@ INLINE unsigned GetOPCInfo (opc_t OPC)
 
 unsigned char GetAMUseInfo (am_t AM);
 /* Get usage info for the given addressing mode (addressing modes that use
- * index registers return REG_r info for these registers).
- */
+** index registers return REG_r info for these registers).
+*/
 
 opc_t GetInverseBranch (opc_t OPC);
 /* Return a branch that reverse the condition of the branch given in OPC */
 
 opc_t MakeShortBranch (opc_t OPC);
 /* Return the short version of the given branch. If the branch is already
- * a short branch, return the opcode unchanged.
- */
+** a short branch, return the opcode unchanged.
+*/
 
 opc_t MakeLongBranch (opc_t OPC);
 /* Return the long version of the given branch. If the branch is already
- * a long branch, return the opcode unchanged.
- */
+** a long branch, return the opcode unchanged.
+*/
 
 bc_t GetBranchCond (opc_t OPC);
 /* Get the condition for the conditional branch in OPC */