]> git.sur5r.net Git - cc65/blobdiff - src/ld65/expr.h
Flag labels in the map file exports list
[cc65] / src / ld65 / expr.h
index 6305e9ee449187d2a173728e29ea7cfdc5db36fd..a810d0228f55204a3d8b660c6ffd83c493889ad3 100644 (file)
 
 
 
-#include "../common/exprdefs.h"
+/* common */
+#include "exprdefs.h"
 
+/* ld65 */
 #include "objdata.h"
 #include "exports.h"
 #include "config.h"
@@ -78,6 +80,9 @@ ExprNode* LiteralExpr (long Val, ObjData* O);
 ExprNode* MemExpr (Memory* Mem, long Offs, ObjData* O);
 /* Return an expression tree that encodes an offset into the memory area */
 
+ExprNode* SegExpr (Section* Sec, long Offs, ObjData* O);
+/* Return an expression tree that encodes an offset into a segment */
+
 void DumpExpr (const ExprNode* Expr);
 /* Dump an expression tree to stdout */