mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
The lexer itself is very much incomplete, but this is intended to be a safe point to revert to should further implementation go south.
58 lines
1.1 KiB
C
58 lines
1.1 KiB
C
/*
|
|
* This file is part of RGBDS.
|
|
*
|
|
* Copyright (c) 1997-2018, Carsten Sorensen and RGBDS contributors.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef RGBDS_MAIN_H
|
|
#define RGBDS_MAIN_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#include "helpers.h"
|
|
|
|
struct sOptions {
|
|
char binary[2];
|
|
char gbgfx[4];
|
|
int32_t fillchar;
|
|
};
|
|
|
|
extern char *tzNewMacro;
|
|
extern uint32_t ulNewMacroSize;
|
|
extern int32_t nGBGfxID;
|
|
extern int32_t nBinaryID;
|
|
|
|
extern struct sOptions DefaultOptions;
|
|
extern struct sOptions CurrentOptions;
|
|
extern bool haltnop;
|
|
extern bool optimizeloads;
|
|
extern bool verbose;
|
|
extern bool warnings; /* True to enable warnings, false to disable them. */
|
|
|
|
extern FILE *dependfile;
|
|
extern char *tzTargetFileName;
|
|
extern bool oGeneratedMissingIncludes;
|
|
extern bool oFailedOnMissingInclude;
|
|
extern bool oGeneratePhonyDeps;
|
|
|
|
void opt_Push(void);
|
|
void opt_Pop(void);
|
|
void opt_Parse(char *s);
|
|
|
|
void upperstring(char *s);
|
|
void lowerstring(char *s);
|
|
|
|
/* TODO: are these really needed? */
|
|
#define YY_FATAL_ERROR fatalerror
|
|
|
|
#ifdef YYLMAX
|
|
#undef YYLMAX
|
|
#endif
|
|
#define YYLMAX 65536
|
|
|
|
#endif /* RGBDS_MAIN_H */
|