don't print SYSTEM stacktrace on exceptions as it's not scheduled any more.
[minix.git] / lib / libsys / sys_readbios.c
blob8c043e53c32e6131d810b839fc9851f71639c71d
1 #include "syslib.h"
3 PUBLIC int sys_readbios(address, buf, size)
4 phys_bytes address; /* Absolute memory address */
5 void *buf; /* Buffer to store the results */
6 size_t size; /* Amount of data to read */
8 /* Read data from BIOS locations */
9 message m;
11 m.RDB_SIZE = size;
12 m.RDB_ADDR = address;
13 m.RDB_BUF = buf;
14 return(_kernel_call(SYS_READBIOS, &m));