git-svn-id: svn://svn.cc65.org/cc65/trunk@338 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-09-24 20:54:49 +00:00
parent 16bc247cbf
commit 42fb5661f1
14 changed files with 549 additions and 98 deletions

View File

@@ -49,10 +49,10 @@ enum attr_t {
atDefault = 0x00, /* Default style */
atCode = 0x01,
atIllegal = 0x02,
atByteTab = 0x02, /* Same as illegal */
atByteTab = 0x03, /* Same as illegal */
atWordTab = 0x04,
atRtsTab = 0x08,
atLabel = 0x80,
atAddrTab = 0x05,
atRtsTab = 0x06,
atStyleMask = 0x0F /* Output style */
};
@@ -88,6 +88,9 @@ const char* GetLabel (unsigned Addr);
unsigned char GetStyle (unsigned Addr);
/* Return the style attribute for the given address */
void DefOutOfRangeLabels (void);
/* Output any labels that are out of the loaded code range */
/* End of attrtab.h */