]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/X64/CpuBreakpoint.nasm
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / X64 / CpuBreakpoint.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 ; CpuBreakpoint.Asm
8 ;
9 ; Abstract:
10 ;
11 ; CpuBreakpoint function
12 ;
13 ; Notes:
14 ;
15 ;------------------------------------------------------------------------------
16
17 DEFAULT REL
18 SECTION .text
19
20 ;------------------------------------------------------------------------------
21 ; VOID
22 ; EFIAPI
23 ; CpuBreakpoint (
24 ; VOID
25 ; );
26 ;------------------------------------------------------------------------------
27 global ASM_PFX(CpuBreakpoint)
28 ASM_PFX(CpuBreakpoint):
29 int 3
30 ret
31