Download Pelles C here: http://www.pellesc.se
Processor Information (Type 4)
Type............................: 4
Length..........................: 48
Handle..........................: 4
Socket Designation..............: 1 => "U3E1"
Processor Type..................: 3 => 'Central Processor'
Processor Family................: 198 => 'Intel(R) Core(TM) i7 processor'
Processor Manufacturer..........: 2 => "Intel(R) Corporation"
Processor ID....................: 0xbfebfbff000b06a3
Processor Version...............: 3 => "13th Gen Intel(R) Core(TM) i7-1355U"
Voltage.........................: 0b10001010
External Clock..................: 100 MHz
Max Speed.......................: 5000 MHz
Current Speed...................: 4257 MHz
Status..........................: 0b1000001
Processor Upgrade...............: 65 => 'Socket BGA1744'
Best to direct the prodigious output to a text file for easy viewing. smbios.exe > HP_Bios.txt.386
.model flat,stdcall
option casemap:none
includelib \PellesC\lib\Win\kernel32.lib
includelib \PellesC\lib\Win\user32.lib
ExitProcess PROTO :DWORD
printfX PROTO C format:DWORD,args:VARARG
.data
format1 db 'This is a % % to % %',0
str1 db 'printfX',0
str2 db 'demo',0
str3 db 'type',0
str4 db 'strings.',0
.code
start:
invoke printfX,ADDR format1,
ADDR str1,ADDR str2,
ADDR str3,ADDR str4
invoke ExitProcess,0
END start
Page created in 0.057 seconds with 15 queries.