Hold address sizes in an unsigned char

git-svn-id: svn://svn.cc65.org/cc65/trunk@2680 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-11-23 21:39:12 +00:00
parent eb7fc320cc
commit f99049f84c
4 changed files with 11 additions and 10 deletions

View File

@@ -45,7 +45,7 @@
SegDef* NewSegDef (const char* Name, unsigned AddrSize)
SegDef* NewSegDef (const char* Name, unsigned char AddrSize)
/* Create a new segment definition and return it */
{
/* Allocate memory */
@@ -78,3 +78,4 @@ SegDef* DupSegDef (const SegDef* Def)

View File

@@ -37,7 +37,7 @@
#define SEGDEFS_H
/* common */
#include "addrsize.h"
@@ -52,8 +52,8 @@
/* Segment definition */
typedef struct SegDef SegDef;
struct SegDef {
char* Name; /* Segment name */
unsigned AddrSize; /* Default address size */
char* Name; /* Segment name */
unsigned char AddrSize; /* Default address size */
};
/* Initializer for static SegDefs */
@@ -67,7 +67,7 @@ struct SegDef {
SegDef* NewSegDef (const char* Name, unsigned AddrSize);
SegDef* NewSegDef (const char* Name, unsigned char AddrSize);
/* Create a new segment definition and return it */
void FreeSegDef (SegDef* D);
@@ -77,7 +77,7 @@ SegDef* DupSegDef (const SegDef* D);
/* Duplicate a segment definition and return it */
/* End of segdefs.h */
#endif