Changeset 95053 in vbox for trunk/src/VBox
- Timestamp:
- May 21, 2022 4:52:35 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/orgs.asm
r95052 r95053 67 67 if VBOX_BIOS_CPU ge 80286 68 68 SYS_MODEL_ID equ 0FCh ; PC/AT 69 SYS_SUBMODEL_ID equ 1 69 70 else 70 71 SYS_MODEL_ID equ 0FBh ; PC/XT 71 endif72 72 SYS_SUBMODEL_ID equ 0 73 endif 73 74 BIOS_REVISION equ 1 74 75 … … 1703 1704 include pirq.inc 1704 1705 1706 if 0 ; Sample VPD table 1707 1708 ;; IBM style VPD (Vital Product Data) information. Most IBM systems 1709 ;; had a VPD table since about 1992, later the same information was 1710 ;; also reported through DMI. 1711 1712 align 16 1713 db 0AAh, 055h, 'VPD' 1714 db 48 ; VPD size 1715 db 'RESERVE' ; reserved... for what? 1716 db 'INET35WW ' ; BIOS build ID 1717 db '5238NXU' ; system serial number 1718 db 'J1Y3581338D' ; unique ID 1719 db '8643MD0' ; IBM machine type 1720 db 0 ; checksum (to be calculated) 1721 endif 1705 1722 1706 1723 ;; -------------------------------------------------------- … … 2089 2106 ;; BIOS build date 2090 2107 db BIOS_BUILD_DATE 2091 db 0 ; padding2108 db 0 ; null terminator 2092 2109 ;; System model ID 2093 2110 db SYS_MODEL_ID
Note:
See TracChangeset
for help on using the changeset viewer.