]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/X64/WriteMm4.nasm
7cbd25e70a90185268c9873c7e484adad1107751
[mirror_edk2.git] / MdePkg / Library / BaseLib / X64 / WriteMm4.nasm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2006 - 2022, Intel Corporation. All rights reserved.<BR>
4 ; SPDX-License-Identifier: BSD-2-Clause-Patent
5 ;
6 ; Module Name:
7 ;
8 ; WriteMm4.Asm
9 ;
10 ; Abstract:
11 ;
12 ; AsmWriteMm4 function
13 ;
14 ; Notes:
15 ;
16 ;------------------------------------------------------------------------------
17
18 DEFAULT REL
19 SECTION .text
20
21 ;------------------------------------------------------------------------------
22 ; VOID
23 ; EFIAPI
24 ; AsmWriteMm4 (
25 ; IN UINT64 Value
26 ; );
27 ;------------------------------------------------------------------------------
28 global ASM_PFX(AsmWriteMm4)
29 ASM_PFX(AsmWriteMm4):
30 movq mm4, rcx
31 ret
32