73e5de6354
Changed pci_dev_name and pci_slot_name to use safecopies. Mae it possible to disable the use of safecopies in kputc for debugging.
15 lines
373 B
C
15 lines
373 B
C
#include "syslib.h"
|
|
|
|
PUBLIC int sys_readbios(address, buf, size)
|
|
phys_bytes address; /* Absolute memory address */
|
|
void *buf; /* Buffer to store the results */
|
|
size_t size; /* Amount of data to read */
|
|
{
|
|
/* Read data from BIOS locations */
|
|
message m;
|
|
|
|
m.RDB_SIZE = size;
|
|
m.RDB_ADDR = address;
|
|
m.RDB_BUF = buf;
|
|
return(_taskcall(SYSTASK, SYS_READBIOS, &m));
|
|
}
|