diff options
author | raywu <raywu0301@gmail.com> | 2018-06-15 00:00:50 +0800 |
---|---|---|
committer | raywu <raywu0301@gmail.com> | 2018-06-15 00:00:50 +0800 |
commit | b7c51c9cf4864df6aabb99a1ae843becd577237c (patch) | |
tree | eebe9b0d0ca03062955223097e57da84dd618b9a /Board/CPU/Microcode/MPDTable.asm | |
download | zprj-master.tar.xz |
Diffstat (limited to 'Board/CPU/Microcode/MPDTable.asm')
-rw-r--r-- | Board/CPU/Microcode/MPDTable.asm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Board/CPU/Microcode/MPDTable.asm b/Board/CPU/Microcode/MPDTable.asm new file mode 100644 index 0000000..42bbef1 --- /dev/null +++ b/Board/CPU/Microcode/MPDTable.asm @@ -0,0 +1,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
\ No newline at end of file |