Write spans out in a separate object file section. This allows to merge
duplicate spans in an object file and more extensions to come. git-svn-id: svn://svn.cc65.org/cc65/trunk@5250 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -46,10 +46,10 @@
|
||||
|
||||
/* Defines for magic and version */
|
||||
#define OBJ_MAGIC 0x616E7A55
|
||||
#define OBJ_VERSION 0x000E
|
||||
#define OBJ_VERSION 0x000F
|
||||
|
||||
/* Size of an object file header */
|
||||
#define OBJ_HDR_SIZE (22*4)
|
||||
#define OBJ_HDR_SIZE (24*4)
|
||||
|
||||
/* Flag bits */
|
||||
#define OBJ_FLAGS_DBGINFO 0x0001 /* File has debug info */
|
||||
@@ -83,6 +83,8 @@ struct ObjHeader {
|
||||
unsigned long AssertSize; /* 32: Size of assertion table */
|
||||
unsigned long ScopeOffs; /* 32: Offset into scope table */
|
||||
unsigned long ScopeSize; /* 32: Size of scope table */
|
||||
unsigned long SpanOffs; /* 32: Offset into span table */
|
||||
unsigned long SpanSize; /* 32: Size of span table */
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user