iPXE
kir.h
Go to the documentation of this file.
1 #ifndef KIR_H
2 #define KIR_H
3 
4 #ifndef KEEP_IT_REAL
5 #error "kir.h can be used only with -DKEEP_IT_REAL"
6 #endif
7 
8 #ifdef ASSEMBLY
9 
10 #define code32 code16gcc
11 
12 #else /* ASSEMBLY */
13 
14 __asm__ ( ".code16gcc" );
15 
16 #endif /* ASSEMBLY */
17 
18 #endif /* KIR_H */
__asm__(".code16gcc")