From 25c317dcc399a0d634bd1be109780225e83c1f42 Mon Sep 17 00:00:00 2001 From: cuz Date: Sat, 18 May 2002 21:38:30 +0000 Subject: [PATCH] New o65 defines git-svn-id: svn://svn.cc65.org/cc65/trunk@1279 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- asminc/o65.inc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/asminc/o65.inc b/asminc/o65.inc index cda942f9d..45bc7ac14 100644 --- a/asminc/o65.inc +++ b/asminc/o65.inc @@ -67,6 +67,14 @@ O65_SIZE_32BIT = $2000 ; All size words are 32bit O65_SIZE_16BIT = $0000 ; All size words are 16bit O65_SIZE_MASK = $2000 ; Mask to extract size +O65_FTYPE_OBJ = $1000 ; Object file +O65_FTYPE_EXE = $0000 ; Executable file +O65_FTYPE_MASK = $1000 ; Mask to extract type + +O65_ADDR_SIMPLE = $0800 ; Simple addressing +O65_ADDR_DEFAULT = $0000 ; Default addressing +O65_ADDR_MASK = $0800 ; Mask to extract addressing + O65_ALIGN_1 = $0000 ; Bytewise alignment O65_ALIGN_2 = $0001 ; Align words O65_ALIGN_4 = $0002 ; Align longwords -- 2.39.5