mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 15:20:55 -04:00
16 lines
247 B
C
16 lines
247 B
C
#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
|