Add option to build with nonmatching functions

This commit is contained in:
Aetias
2023-12-20 10:41:02 +01:00
parent e0e442024f
commit 7550a63c03
3 changed files with 32 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef PH_GLOBAL_H
#define PH_GLOBAL_H
#ifdef NONMATCHING
#define NONMATCH
#else
#define NONMATCH asm
#endif
// Prevent the IDE from reporting errors that the compiler/linker won't report
#ifdef __INTELLISENSE__
#define NONMATCH
#endif
#endif