]> git.sur5r.net Git - cc65/commitdiff
New o65 defines
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 18 May 2002 21:38:30 +0000 (21:38 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 18 May 2002 21:38:30 +0000 (21:38 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1279 b7a2c559-68d2-44c3-8de9-860c34a00d81

asminc/o65.inc

index cda942f9d8f2f623fe82ced05e011b3f65bbac99..45bc7ac148863235ada1ce36d5b46e12dedd0abe 100644 (file)
@@ -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