Message type for SYS_READBIOS.

Change-Id: Id19f658f5eb5f350e3e19f9ce3f8ae80aea23c51
This commit is contained in:
2014-07-25 15:54:54 +02:00
parent b51e653dd4
commit f45c6b86cb
4 changed files with 21 additions and 15 deletions

View File

@@ -8,8 +8,8 @@ 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;
m.m_lsys_krn_readbios.size = size;
m.m_lsys_krn_readbios.addr = address;
m.m_lsys_krn_readbios.buf = buf;
return(_kernel_call(SYS_READBIOS, &m));
}