Added dbg file generation
git-svn-id: svn://svn.cc65.org/cc65/trunk@764 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -48,16 +48,35 @@
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
/* Forwards */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
struct Segment;
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
typedef struct CodeRange CodeRange;
|
||||
struct CodeRange {
|
||||
unsigned long Offs;
|
||||
unsigned long Size;
|
||||
};
|
||||
|
||||
|
||||
|
||||
typedef struct LineInfo LineInfo;
|
||||
struct LineInfo {
|
||||
struct FileInfo* File; /* File struct for this line */
|
||||
FilePos Pos; /* File position */
|
||||
Collection Fragments; /* Fragments for this line */
|
||||
Collection CodeRanges; /* Code ranges for this line */
|
||||
};
|
||||
|
||||
|
||||
@@ -71,6 +90,9 @@ struct LineInfo {
|
||||
LineInfo* ReadLineInfo (FILE* F, ObjData* O);
|
||||
/* Read a line info from a file and return it */
|
||||
|
||||
void RelocLineInfo (struct Segment* S);
|
||||
/* Relocate the line info for a segment. */
|
||||
|
||||
|
||||
|
||||
/* End of lineinfo.h */
|
||||
|
||||
Reference in New Issue
Block a user