mirror of
https://github.com/ipxe/ipxe
synced 2025-12-14 07:50:43 +03:00
13 lines
224 B
C
13 lines
224 B
C
|
|
#ifndef _BOOTSECTOR_H
|
||
|
|
#define _BOOTSECTOR_H
|
||
|
|
|
||
|
|
/** @file
|
||
|
|
*
|
||
|
|
* x86 bootsector image format
|
||
|
|
*/
|
||
|
|
|
||
|
|
extern int call_bootsector ( unsigned int segment, unsigned int offset,
|
||
|
|
unsigned int drive );
|
||
|
|
|
||
|
|
#endif /* _BOOTSECTOR_H */
|