mirror of
https://github.com/ipxe/ipxe
synced 2025-12-27 10:02:42 +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 */
|