]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/Monitor.nasm
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / Monitor.nasm
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 ; Monitor.Asm
9 ;
10 ; Abstract:
11 ;
12 ; AsmMonitor function
13 ;
14 ; Notes:
15 ;
16 ;------------------------------------------------------------------------------
17
18 SECTION .text
19
20 ;------------------------------------------------------------------------------
21 ; UINTN
22 ; EFIAPI
23 ; AsmMonitor (
24 ; IN UINTN Eax,
25 ; IN UINTN Ecx,
26 ; IN UINTN Edx
27 ; );
28 ;------------------------------------------------------------------------------
29 global ASM_PFX(AsmMonitor)
30 ASM_PFX(AsmMonitor):
31 mov eax, [esp + 4]
32 mov ecx, [esp + 8]
33 mov edx, [esp + 12]
34 DB 0xf, 1, 0xc8 ; monitor
35 ret
36