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