From 4cb4751164427b76dde7ae740fd2b891d5bcd0af Mon Sep 17 00:00:00 2001 From: cuz Date: Sat, 18 May 2002 21:13:52 +0000 Subject: [PATCH] New o65 defines git-svn-id: svn://svn.cc65.org/cc65/trunk@1276 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/o65.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/o65.h b/include/o65.h index 9674a590f..3f12a8fc5 100644 --- a/include/o65.h +++ b/include/o65.h @@ -85,6 +85,14 @@ struct o65_header { #define O65_SIZE_16BIT 0x0000 /* All size words are 16bit */ #define O65_SIZE_MASK 0x2000 /* Mask to extract size */ +#define O65_FTYPE_OBJ 0x1000 /* Object file */ +#define O65_FTYPE_EXE 0x0000 /* Executable file */ +#define O65_FTYPE_MASK 0x1000 /* Mask to extract type */ + +#define O65_ADDR_SIMPLE 0x0800 /* Simple addressing */ +#define O65_ADDR_DEFAULT 0x0000 /* Default addressing */ +#define O65_ADDR_MASK 0x0800 /* Mask to extract addressing */ + #define O65_ALIGN_1 0x0000 /* Bytewise alignment */ #define O65_ALIGN_2 0x0001 /* Align words */ #define O65_ALIGN_4 0x0002 /* Align longwords */ -- 2.39.5