mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
12 lines
246 B
C
12 lines
246 B
C
#ifndef ASMOTOR_LINK_SYMBOL_H
|
|
#define ASMOTOR_LINK_SYMBOL_H
|
|
|
|
#include "link/types.h"
|
|
|
|
void sym_Init(void);
|
|
void sym_CreateSymbol(char *tzName, SLONG nValue, SBYTE nBank);
|
|
SLONG sym_GetValue(char *tzName);
|
|
SLONG sym_GetBank(char *tzName);
|
|
|
|
#endif
|