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;   ReadMm1.Asm
9;
10; Abstract:
11;
12;   AsmReadMm1 function
13;
14; Notes:
15;
16;------------------------------------------------------------------------------
17
18    SECTION .text
19
20;------------------------------------------------------------------------------
21; UINT64
22; EFIAPI
23; AsmReadMm1 (
24;   VOID
25;   );
26;------------------------------------------------------------------------------
27global ASM_PFX(AsmReadMm1)
28ASM_PFX(AsmReadMm1):
29    push    eax
30    push    eax
31    movq    [esp], mm1
32    pop     eax
33    pop     edx
34    ret
35
36