From 8a8c2d742b51525f66c2210e3c8a251de10022ff Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Wed, 11 Jun 2008 14:21:44 +0000 Subject: 20080611-1520 --- os/boot/pc/devbios.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 os/boot/pc/devbios.h (limited to 'os/boot/pc/devbios.h') diff --git a/os/boot/pc/devbios.h b/os/boot/pc/devbios.h new file mode 100644 index 00000000..08832996 --- /dev/null +++ b/os/boot/pc/devbios.h @@ -0,0 +1,22 @@ +typedef uvlong Devbytes, Devsects; + +typedef struct Biosdrive Biosdrive; /* 1 drive -> ndevs */ +typedef struct Biosdev Biosdev; + +struct Biosdrive { + int ndevs; +}; +struct Biosdev { + Devbytes size; + Devbytes offset; + uchar id; + char type; +}; + +int biosboot(int dev, char *file, Boot *b); +void* biosgetfspart(int i, char *name, int chatty); +void biosinitdev(int i, char *name); +int biosinit(void); +void biosprintbootdevs(int dev); +void biosprintdevs(int i); +long biosread(Fs *fs, void *a, long n); -- cgit v1.2.3