mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
20 lines
333 B
C
20 lines
333 B
C
#ifndef ASMOTOR_LINK_MAIN_H
|
|
#define ASMOTOR_LINK_MAIN_H
|
|
|
|
#include "link/types.h"
|
|
|
|
extern void PrintUsage(void);
|
|
extern void fatalerror(char *s);
|
|
extern char temptext[1024];
|
|
extern SLONG fillchar;
|
|
extern char smartlinkstartsymbol[256];
|
|
|
|
enum eOutputType {
|
|
OUTPUT_GBROM,
|
|
OUTPUT_PSION2
|
|
};
|
|
|
|
extern enum eOutputType outputtype;
|
|
|
|
#endif
|