mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 03:13:15 +01:00
10 lines
268 B
C
10 lines
268 B
C
#ifndef __MM0_MACROS_H__
|
|
#define __MM0_MACROS_H__
|
|
|
|
#define __INC_ARCH(x) <arch/__ARCH__/x>
|
|
#define __INC_SUBARCH(x) <arch/__ARCH__/__SUBARCH__/x>
|
|
#define __INC_PLAT(x) <platform/__PLATFORM__/x>
|
|
#define __INC_GLUE(x) <glue/__ARCH__/x>
|
|
|
|
#endif /* __MM0_MACROS_H__ */
|