diff options
Diffstat (limited to 'roms/ipxe/src/arch/x86/include/pnpbios.h')
-rw-r--r-- | roms/ipxe/src/arch/x86/include/pnpbios.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roms/ipxe/src/arch/x86/include/pnpbios.h b/roms/ipxe/src/arch/x86/include/pnpbios.h new file mode 100644 index 000000000..d14873700 --- /dev/null +++ b/roms/ipxe/src/arch/x86/include/pnpbios.h @@ -0,0 +1,17 @@ +#ifndef _PNPBIOS_H +#define _PNPBIOS_H + +/** @file + * + * PnP BIOS + * + */ + +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + +/* BIOS segment address */ +#define BIOS_SEG 0xf000 + +extern int find_pnp_bios ( void ); + +#endif /* _PNPBIOS_H */ |