mirror of
https://github.com/pret/pokediamond.git
synced 2026-03-22 02:04:25 -05:00
11 lines
355 B
C
11 lines
355 B
C
#ifndef GUARD_FUNCTION_TARGET_H
|
|
#define GUARD_FUNCTION_TARGET_H
|
|
|
|
#define ARM_FUNC _Pragma("thumb off")
|
|
#define THUMB_FUNC _Pragma("thumb on")
|
|
|
|
#define ENUMS_ALWAYS_INT_ON _Pragma("enumsalwaysint on")
|
|
#define ENUMS_ALWAYS_INT_OFF _Pragma("enumsalwaysint off")
|
|
#define ENUMS_ALWAYS_INT_RESET _Pragma("enumsalwaysint reset")
|
|
|
|
#endif //GUARD_FUNCTION_TARGET_H
|