blob: 42bbef1e36bf4f63b328e6ff0a6608e3dfbf4bcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include token.equ
ifndef EFIx64
.model small
endif
.data
db 'MPDT' ;Microcode Patch Description Table
db 0 ;Revision
db 0 ;[0] = 0 Non boot block, [0] = 1 boot block
db 0 ;CPU Manufacture: 0 = Intel
db 0 ;Reserved
dd MKF_MICROCODE_ALIGNMENT ;Alignment - Include token .equ
dw 0 ;Reserved
dw 16 ;size of Table
END
|