blob: 590c0e9a720610e550a6992fd9f7b71baa37c05c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _IPXE_INT15_H
#define _IPXE_INT15_H
/** @file
*
* INT15-based memory map
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
FILE_SECBOOT ( PERMITTED );
#ifdef MEMMAP_INT15
#define MEMMAP_PREFIX_int15
#else
#define MEMMAP_PREFIX_int15 __int15_
#endif
extern void int15_intercept ( int intercept );
extern void hide_basemem ( void );
#endif /* _IPXE_INT15_H */
|