Added/completed/debugged o65 support for Lunix
git-svn-id: svn://svn.cc65.org/cc65/trunk@1126 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -89,9 +89,10 @@ struct Section {
|
||||
/* Prototype for a function that is used to write expressions to the target
|
||||
* file (used in SegWrite). It returns one of the following values:
|
||||
*/
|
||||
#define SEG_EXPR_OK 0 /* Ok */
|
||||
#define SEG_EXPR_RANGE_ERROR 1 /* Range error */
|
||||
#define SEG_EXPR_TOO_COMPLEX 2 /* Expression too complex */
|
||||
#define SEG_EXPR_OK 0U /* Ok */
|
||||
#define SEG_EXPR_RANGE_ERROR 1U /* Range error */
|
||||
#define SEG_EXPR_TOO_COMPLEX 2U /* Expression too complex */
|
||||
#define SEG_EXPR_INVALID 3U /* Expression is invalid (e.g. unmapped segment) */
|
||||
|
||||
typedef unsigned (*SegWriteFunc) (ExprNode* E, /* The expression to write */
|
||||
int Signed, /* Signed expression? */
|
||||
|
||||
Reference in New Issue
Block a user