mirror of
https://github.com/cc65/cc65.git
synced 2025-01-13 09:31:53 +00:00
New o65 defines
git-svn-id: svn://svn.cc65.org/cc65/trunk@1279 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
9364b206ab
commit
25c317dcc3
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user