fixed BIOS ROM readout

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8225 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen 2004-06-28 19:57:34 +00:00
parent cc04d75491
commit ed8e4c70db

View File

@ -266,8 +266,12 @@ typedef struct {
uint32 memory_size; /* memory (Mb) */
} ps;
/* mirror of the ROM (copied in driver, because may not be mapped permanently - only over fb) */
uint8 rom_mirror[32768];
/* mirror of the ROM (copied in driver, because may not be mapped permanently) */
struct
{
uint8 mirror[128 * 1024];
uint32 size;
} rom;
/* some configuration settings from ~/config/settings/kernel/drivers/nv.settings if exists */
settings settings;