mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 08:11:31 +00:00
19 lines
244 B
C
19 lines
244 B
C
|
#ifndef KIR_H
|
||
|
#define KIR_H
|
||
|
|
||
|
#ifndef KEEP_IT_REAL
|
||
|
#error "kir.h can be used only with -DKEEP_IT_REAL"
|
||
|
#endif
|
||
|
|
||
|
#ifdef ASSEMBLY
|
||
|
|
||
|
#define code32 code16gcc
|
||
|
|
||
|
#else /* ASSEMBLY */
|
||
|
|
||
|
__asm__ ( ".code16gcc" );
|
||
|
|
||
|
#endif /* ASSEMBLY */
|
||
|
|
||
|
#endif /* KIR_H */
|