Remove elfkill

This commit is contained in:
Aetias
2024-10-12 16:16:17 +02:00
parent b2f57385a0
commit 74a29deff3
6 changed files with 1 additions and 330 deletions
-2
View File
@@ -7,8 +7,6 @@
#define SET_FLAG(arr, pos) ((arr)[((u32)(pos)) >> 5] |= 1 << ((pos) & 0x1f))
#define RESET_FLAG(arr, pos) ((arr)[((u32)(pos)) >> 5] &= ~(1 << ((pos) & 0x1f)))
// KILL(name) causes a function to be excluded from the output ROM, see elfkill.cpp
#define KILL(name)
// Prevent the IDE from reporting errors that the compiler/linker won't report
#ifdef __INTELLISENSE__