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;   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;------------------------------------------------------------------------------
28global ASM_PFX(AsmWriteMm4)
29ASM_PFX(AsmWriteMm4):
30    ;
31    ; 64-bit MASM doesn't support MMX instructions, so use opcode here
32    ;
33    DB      0x48, 0xf, 0x6e, 0xe1
34    ret
35
36