mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
- Changes most `/* comments */` to `// comments` - Changes `/**` block comments consistently to `/*` - Adds consistent license comments to all files Also renames `T_POP_SET` to `T_Z80_SET`
32 lines
650 B
C
32 lines
650 B
C
/*
|
|
* This file is part of RGBDS.
|
|
*
|
|
* Copyright (c) 1997-2021, 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"
|
|
|
|
extern bool haltnop;
|
|
extern bool warnOnHaltNop;
|
|
extern bool optimizeLoads;
|
|
extern bool warnOnLdOpt;
|
|
extern bool verbose;
|
|
extern bool warnings; // True to enable warnings, false to disable them.
|
|
|
|
extern FILE *dependfile;
|
|
extern char *targetFileName;
|
|
extern bool generatedMissingIncludes;
|
|
extern bool failedOnMissingInclude;
|
|
extern bool generatePhonyDeps;
|
|
|
|
#endif // RGBDS_MAIN_H
|