diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-06-10 09:18:44 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-06-10 09:18:44 -0400 |
commit | 7af133c6b4464a22eeb7310f9815d4c2d7b03291 (patch) | |
tree | a61cbf74bcd3260808c5656a7446d8876be91fb9 /src/biosvar.h | |
parent | e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5 (diff) | |
download | seabios-7af133c6b4464a22eeb7310f9815d4c2d7b03291.tar.gz |
Minor - extend the size of the 'struct bios_data_area_s' to 256 bytes.
Make the struct 256 bytes - just for documentation purposes.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/biosvar.h')
-rw-r--r-- | src/biosvar.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/biosvar.h b/src/biosvar.h index c879f402..f0a0fd2e 100644 --- a/src/biosvar.h +++ b/src/biosvar.h @@ -114,6 +114,9 @@ struct bios_data_area_s { u8 other_b0[9]; u8 vbe_flag; u16 vbe_mode; + u8 other_bc[4]; + // 40:C0 + u8 other_c0[4*16]; } PACKED; // BDA floppy_recalibration_status bitdefs |