]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/CpuPause.nasm
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / CpuPause.nasm
1 ;------------------------------------------------------------------------------ ;
2 ; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
3 ; SPDX-License-Identifier: BSD-2-Clause-Patent
4 ;
5 ; Module Name:
6 ;
7 ; CpuPause.Asm
8 ;
9 ; Abstract:
10 ;
11 ; CpuPause function
12 ;
13 ; Notes:
14 ;
15 ;------------------------------------------------------------------------------
16
17 SECTION .text
18
19 ;------------------------------------------------------------------------------
20 ; VOID
21 ; EFIAPI
22 ; CpuPause (
23 ; VOID
24 ; );
25 ;------------------------------------------------------------------------------
26 global ASM_PFX(CpuPause)
27 ASM_PFX(CpuPause):
28 pause
29 ret
30