mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Notable side effects: * Use the standard-conformant MSVC preproc * Add test for linker script INCLUDE * Improve wording of placement conflict errors * Fix errors from not newline-terminated files * Teach checkdiff about the linker script doc * Call linker script "commands" "directives" instead --------- Co-authored-by: Rangi42 <remy.oukaour+rangi42@gmail.com>
17 lines
336 B
C++
17 lines
336 B
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
// Parsing a linker script
|
|
#ifndef RGBDS_LINK_SCRIPT_H
|
|
#define RGBDS_LINK_SCRIPT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "linkdefs.hpp"
|
|
|
|
/*
|
|
* Parses the linker script, and modifies the sections mentioned within appropriately.
|
|
*/
|
|
void script_ProcessScript(char const *path);
|
|
|
|
#endif // RGBDS_LINK_SCRIPT_H
|