An "absolute mode override modifier" is now added for instructions where

the assembler will otherwise choose the cheaper zeropage addressing mode
because of the size of the operand.


git-svn-id: svn://svn.cc65.org/cc65/trunk@2590 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-10-31 16:28:56 +00:00
parent 7496da8f93
commit cba152f777
6 changed files with 1050 additions and 1034 deletions

View File

@@ -46,12 +46,14 @@
/* Constants for Flags */
enum {
flNone = 0x00, /* No flags given */
flNoLabel = 0x00, /* Don't use a label */
flGenLabel = 0x01, /* Generate a label */
flUseLabel = 0x02, /* Use a label if there is one */
flLabel = flUseLabel|flGenLabel,/* Generate and use a label */
flIllegal = 0x10 /* Illegal instruction */
flNone = 0x00, /* No flags given */
flNoLabel = 0x00, /* Don't use a label */
flGenLabel = 0x01, /* Generate a label */
flUseLabel = 0x02, /* Use a label if there is one */
flLabel = flUseLabel|flGenLabel, /* Generate and use a label */
flIllegal = 0x10, /* Illegal instruction */
flAbsOverride = 0x20, /* Need a: override */
flFarOverride = 0x40 /* Need f: override */
};
/* Forward/typedef for struct OpcDesc */