Added o65 symbol export capability
git-svn-id: svn://svn.cc65.org/cc65/trunk@1127 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -126,10 +126,18 @@ Export* CreateMemExport (const char* Name, Memory* Mem, unsigned long Offs);
|
||||
Export* CreateSegExport (const char* Name, Section* S, unsigned long Offs);
|
||||
/* Create a relative export to a segment (section) */
|
||||
|
||||
Export* FindExport (const char* Name);
|
||||
/* Check for an identifier in the list. Return 0 if not found, otherwise
|
||||
* return a pointer to the export.
|
||||
*/
|
||||
|
||||
int IsUnresolved (const char* Name);
|
||||
/* Check if this symbol is an unresolved export */
|
||||
|
||||
int IsConstExport (const Export* E);
|
||||
int IsUnresolvedExport (const Export* E);
|
||||
/* Return true if the given export is unresolved */
|
||||
|
||||
int IsConstExport (const Export* E);
|
||||
/* Return true if the expression associated with this export is const */
|
||||
|
||||
long GetExportVal (const Export* E);
|
||||
|
||||
Reference in New Issue
Block a user