mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
This is useful to generate error messages when there is a symbol that appears in more than one object file. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
13 lines
296 B
C
13 lines
296 B
C
#ifndef RGBDS_LINK_SYMBOL_H
|
|
#define RGBDS_LINK_SYMBOL_H
|
|
|
|
#include "types.h"
|
|
|
|
void sym_Init(void);
|
|
void sym_CreateSymbol(char *tzName, SLONG nValue, SLONG nBank,
|
|
char *tzObjFileName, char *tzFileName, ULONG nFileLine);
|
|
SLONG sym_GetValue(char *tzName);
|
|
SLONG sym_GetBank(char *tzName);
|
|
|
|
#endif
|