Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
/*****************************************************************************/
|
||||
/* */
|
||||
/* listing.h */
|
||||
/* listing.h */
|
||||
/* */
|
||||
/* Listing support for the ca65 crossassembler */
|
||||
/* Listing support for the ca65 crossassembler */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -54,47 +54,47 @@ struct StrBuf;
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
/* Data */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
/* Length of the header of a listing line */
|
||||
#define LINE_HEADER_LEN 24
|
||||
#define LINE_HEADER_LEN 24
|
||||
|
||||
/* One listing line as it is stored in memory */
|
||||
typedef struct ListLine ListLine;
|
||||
struct ListLine {
|
||||
ListLine* Next; /* Pointer to next line */
|
||||
Fragment* FragList; /* List of fragments for this line */
|
||||
Fragment* FragLast; /* Last entry in fragment list */
|
||||
unsigned long PC; /* Program counter for this line */
|
||||
unsigned char Reloc; /* Relocatable mode? */
|
||||
unsigned char File; /* From which file is the line? */
|
||||
unsigned char Depth; /* Include depth */
|
||||
unsigned char Output; /* Should we output this line? */
|
||||
unsigned char ListBytes; /* How many bytes at max? */
|
||||
char Line[1]; /* Line with dynamic length */
|
||||
ListLine* Next; /* Pointer to next line */
|
||||
Fragment* FragList; /* List of fragments for this line */
|
||||
Fragment* FragLast; /* Last entry in fragment list */
|
||||
unsigned long PC; /* Program counter for this line */
|
||||
unsigned char Reloc; /* Relocatable mode? */
|
||||
unsigned char File; /* From which file is the line? */
|
||||
unsigned char Depth; /* Include depth */
|
||||
unsigned char Output; /* Should we output this line? */
|
||||
unsigned char ListBytes; /* How many bytes at max? */
|
||||
char Line[1]; /* Line with dynamic length */
|
||||
};
|
||||
|
||||
/* Single linked list of lines */
|
||||
extern ListLine* LineList; /* List of listing lines */
|
||||
extern ListLine* LineCur; /* Current listing line */
|
||||
extern ListLine* LineLast; /* Last listing line */
|
||||
extern ListLine* LineList; /* List of listing lines */
|
||||
extern ListLine* LineCur; /* Current listing line */
|
||||
extern ListLine* LineLast; /* Last listing line */
|
||||
|
||||
/* Page formatting */
|
||||
#define MIN_PAGE_LEN 32
|
||||
#define MAX_PAGE_LEN 127
|
||||
extern int PageLength; /* Length of a listing page */
|
||||
#define MIN_PAGE_LEN 32
|
||||
#define MAX_PAGE_LEN 127
|
||||
extern int PageLength; /* Length of a listing page */
|
||||
|
||||
/* Byte for one listing line */
|
||||
#define MIN_LIST_BYTES 4
|
||||
#define MAX_LIST_BYTES 255
|
||||
#define MIN_LIST_BYTES 4
|
||||
#define MAX_LIST_BYTES 255
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Code */
|
||||
/* Code */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user