diff options
Diffstat (limited to 'roms/ipxe/src/arch/i386/include/bootsector.h')
-rw-r--r-- | roms/ipxe/src/arch/i386/include/bootsector.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roms/ipxe/src/arch/i386/include/bootsector.h b/roms/ipxe/src/arch/i386/include/bootsector.h new file mode 100644 index 00000000..8730fbfc --- /dev/null +++ b/roms/ipxe/src/arch/i386/include/bootsector.h @@ -0,0 +1,14 @@ +#ifndef _BOOTSECTOR_H +#define _BOOTSECTOR_H + +/** @file + * + * x86 bootsector image format + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +extern int call_bootsector ( unsigned int segment, unsigned int offset, + unsigned int drive ); + +#endif /* _BOOTSECTOR_H */ |