summaryrefslogtreecommitdiff
path: root/gpxe/src/arch/i386/include/kir.h
blob: 84633d26fab92d0b0b7a405ab66aefce24892fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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 */