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:
@@ -73,15 +73,11 @@ typedef struct Span Span;
|
||||
|
||||
|
||||
|
||||
Span* NewSpan (struct ObjData* Obj, unsigned SecId, unsigned long Offs,
|
||||
unsigned long Size);
|
||||
/* Create and return a new span */
|
||||
|
||||
Span* ReadSpan (FILE* F, struct ObjData* O);
|
||||
Span* ReadSpan (FILE* F, struct ObjData* O, unsigned Id);
|
||||
/* Read a Span from a file and return it */
|
||||
|
||||
void ReadSpans (Collection* Spans, FILE* F, struct ObjData* O);
|
||||
/* Read a list of Spans from a file and return it */
|
||||
void ReadSpanList (Collection* Spans, FILE* F, struct ObjData* O);
|
||||
/* Read a list of span ids from a file and return the spans for the ids */
|
||||
|
||||
void FreeSpan (Span* S);
|
||||
/* Free a span structure */
|
||||
|
||||
Reference in New Issue
Block a user