mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
11 lines
232 B
C
11 lines
232 B
C
#ifndef SYMBOL_H
|
|
#define SYMBOL_H
|
|
|
|
#include "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 |