1;------------------------------------------------------------------------------
2;
3; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4; SPDX-License-Identifier: BSD-2-Clause-Patent
5;
6; Module Name:
7;
8;   WriteMm5.Asm
9;
10; Abstract:
11;
12;   AsmWriteMm5 function
13;
14; Notes:
15;
16;------------------------------------------------------------------------------
17
18    SECTION .text
19
20;------------------------------------------------------------------------------
21; VOID
22; EFIAPI
23; AsmWriteMm5 (
24;   IN UINT64   Value
25;   );
26;------------------------------------------------------------------------------
27global ASM_PFX(AsmWriteMm5)
28ASM_PFX(AsmWriteMm5):
29    movq    mm5, [esp + 4]
30    ret
31
32