Renamed some stuff. Write out the segment size as var, not 32 bit.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5233 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-08-19 20:55:48 +00:00
parent 607aa871e6
commit 1e20489ee1
5 changed files with 34 additions and 26 deletions

View File

@@ -50,10 +50,12 @@
/* Forwards */
struct Segment;
/* Span definition */
typedef struct Span Span;
struct Span{
unsigned Id; /* Span id */
struct Segment* Seg; /* Pointer to segment */
unsigned long Start; /* Start of range */
unsigned long End; /* End of range */
@@ -62,7 +64,7 @@ struct Span{
/*****************************************************************************/
/* Code */
/* Code */
/*****************************************************************************/