mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
13 lines
248 B
C++
13 lines
248 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_LINK_PATCH_HPP
|
|
#define RGBDS_LINK_PATCH_HPP
|
|
|
|
// Checks all assertions
|
|
void patch_CheckAssertions();
|
|
|
|
// Applies all SECTIONs' patches to them
|
|
void patch_ApplyPatches();
|
|
|
|
#endif // RGBDS_LINK_PATCH_HPP
|