mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
7c0aa811ec
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
36 lines
589 B
C
36 lines
589 B
C
/** @file
|
|
CpuBreakpoint function.
|
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
/**
|
|
Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics.
|
|
**/
|
|
|
|
void __debugbreak (VOID);
|
|
|
|
#pragma intrinsic(__debugbreak)
|
|
|
|
/**
|
|
Generates a breakpoint on the CPU.
|
|
|
|
Generates a breakpoint on the CPU. The breakpoint must be implemented such
|
|
that code can resume normal execution after the breakpoint.
|
|
|
|
**/
|
|
VOID
|
|
EFIAPI
|
|
CpuBreakpoint (
|
|
VOID
|
|
)
|
|
{
|
|
__debugbreak ();
|
|
}
|
|
|