1 | ;
|
---|
2 | ; Copyright (C) 2006-2019 Oracle Corporation
|
---|
3 | ;
|
---|
4 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
5 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
6 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
7 | ; General Public License (GPL) as published by the Free Software
|
---|
8 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
9 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
10 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
11 | ; --------------------------------------------------------------------
|
---|
12 | ;
|
---|
13 | ; This code is based on:
|
---|
14 | ;
|
---|
15 | ; ROM BIOS for use with Bochs/Plex86/QEMU emulation environment
|
---|
16 | ;
|
---|
17 | ; Copyright (C) 2002 MandrakeSoft S.A.
|
---|
18 | ;
|
---|
19 | ; MandrakeSoft S.A.
|
---|
20 | ; 43, rue d'Aboukir
|
---|
21 | ; 75002 Paris - France
|
---|
22 | ; http://www.linux-mandrake.com/
|
---|
23 | ; http://www.mandrakesoft.com/
|
---|
24 | ;
|
---|
25 | ; This library is free software; you can redistribute it and/or
|
---|
26 | ; modify it under the terms of the GNU Lesser General Public
|
---|
27 | ; License as published by the Free Software Foundation; either
|
---|
28 | ; version 2 of the License, or (at your option) any later version.
|
---|
29 | ;
|
---|
30 | ; This library is distributed in the hope that it will be useful,
|
---|
31 | ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
32 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
33 | ; Lesser General Public License for more details.
|
---|
34 | ;
|
---|
35 | ; You should have received a copy of the GNU Lesser General Public
|
---|
36 | ; License along with this library; if not, write to the Free Software
|
---|
37 | ; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
---|
38 | ;
|
---|
39 | ;
|
---|
40 |
|
---|
41 | ; Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
42 | ; other than GPL or LGPL is available it will apply instead, Oracle elects to use only
|
---|
43 | ; the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
44 | ; a choice of LGPL license versions is made available with the language indicating
|
---|
45 | ; that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
46 | ; of the LGPL is applied is otherwise unspecified.
|
---|
47 |
|
---|
48 | include vbdmismi.inc
|
---|
49 |
|
---|
50 | align 16
|
---|
51 | ;;
|
---|
52 | ;; NOTE! These are placeholders, also required for correct BIOS
|
---|
53 | ;; checksum calculation. Overwritten by DevPcBios.
|
---|
54 | ;;
|
---|
55 |
|
---|
56 | ;; The SMBIOS header
|
---|
57 | db '_SM_' ; signature
|
---|
58 | db 0 ; checksum (set by biossums)
|
---|
59 | db 01Fh ; EPS length, defined by standard
|
---|
60 | db VBOX_SMBIOS_MAJOR_VER ; SMBIOS major version
|
---|
61 | db VBOX_SMBIOS_MINOR_VER ; SMBIOS minor version
|
---|
62 | dw VBOX_SMBIOS_MAXSS ; Maximum structure size
|
---|
63 | db 0 ; Entry point revision
|
---|
64 | db 0, 0, 0, 0, 0 ; 16 bytes total
|
---|
65 |
|
---|
66 | ;; The DMI header
|
---|
67 | db '_DMI_' ; signature
|
---|
68 | db 0 ; checksum (set by biossums)
|
---|
69 | dw 0 ; DMI tables length (set by DevPcBios)
|
---|
70 | dd VBOX_DMI_TABLE_BASE ; DMI tables base
|
---|
71 | dw 0 ; DMI tables entries (set by DevPcBios)
|
---|
72 | db VBOX_DMI_TABLE_VER ; DMI version
|
---|
73 | db 0 ; Just for alignment (16 bytes total)
|
---|
74 |
|
---|