]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Arm/CpuBreakpoint.S
Fix issue with CodeSourcery gcc requiring assembly functions to have a .type define...
[mirror_edk2.git] / MdePkg / Library / BaseLib / Arm / CpuBreakpoint.S
1 #------------------------------------------------------------------------------
2 #
3 # CpuBreakpoint() for ARM
4 #
5 # Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
6 # Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
7 # This program and the accompanying materials
8 # are licensed and made available under the terms and conditions of the BSD License
9 # which accompanies this distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php.
11 #
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #
15 #------------------------------------------------------------------------------
16
17 .text
18 .p2align 2
19 .globl ASM_PFX(CpuBreakpoint)
20 INTERWORK_FUNC(CpuBreakpoint)
21
22 #/**
23 # Generates a breakpoint on the CPU.
24 #
25 # Generates a breakpoint on the CPU. The breakpoint must be implemented such
26 # that code can resume normal execution after the breakpoint.
27 #
28 #**/
29 #VOID
30 #EFIAPI
31 #CpuBreakpoint (
32 # VOID
33 # );
34 #
35 ASM_PFX(CpuBreakpoint):
36 swi 0xdbdbdb
37 bx lr