blob: ab31c699318215e3f8f02f24dd31e87e7f3f7500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _PNPBIOS_H
#define _PNPBIOS_H
/** @file
*
* PnP BIOS
*
*/
/* BIOS segment address */
#define BIOS_SEG 0xf000
extern int find_pnp_bios ( void );
#endif /* _PNPBIOS_H */
|