mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +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:
parent
0b04a2e823
commit
0c77a8cc34
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user