1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Define default segment names

git-svn-id: svn://svn.cc65.org/cc65/trunk@1936 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-02-08 09:37:42 +00:00
parent 0b04a2e823
commit 0c77a8cc34

View File

@ -50,6 +50,14 @@
#define SEGTYPE_ZP 2
#define SEGTYPE_FAR 3
/* Default segment names */
#define SEGNAME_NULL "NULL"
#define SEGNAME_ZP "ZEROPAGE"
#define SEGNAME_DATA "DATA"
#define SEGNAME_BSS "BSS"
#define SEGNAME_RODATA "RODATA"
#define SEGNAME_CODE "CODE"
/* Fragment types in the object file */
#define FRAG_TYPEMASK 0x38 /* Mask the type of the fragment */
#define FRAG_BYTEMASK 0x07 /* Mask for byte count */