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; ReadMm2.Asm 9; 10; Abstract: 11; 12; AsmReadMm2 function 13; 14; Notes: 15; 16;------------------------------------------------------------------------------ 17 18 DEFAULT REL 19 SECTION .text 20 21;------------------------------------------------------------------------------ 22; UINT64 23; EFIAPI 24; AsmReadMm2 ( 25; VOID 26; ); 27;------------------------------------------------------------------------------ 28global ASM_PFX(AsmReadMm2) 29ASM_PFX(AsmReadMm2): 30 ; 31 ; 64-bit MASM doesn't support MMX instructions, so use opcode here 32 ; 33 DB 0x48, 0xf, 0x7e, 0xd0 34 ret 35 36