source: mainline/boot/arch/ia64/loader/gefi/lib/debug.c@ 7208b6c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7208b6c was 7208b6c, checked in by Jakub Vana <jakub.vana@…>, 17 years ago

Basic IA64 boot and kernel suport for real machines

  • Property mode set to 100644
File size: 444 bytes
Line 
1/*++
2
3Copyright (c) 1998 Intel Corporation
4
5Module Name:
6
7 debug.c
8
9Abstract:
10
11 Debug library functions
12
13
14
15Revision History
16
17--*/
18
19#include "lib.h"
20
21
22
23//
24// Declare runtime functions
25//
26
27//
28//
29//
30
31INTN
32DbgAssert (
33 IN CHAR8 *FileName,
34 IN INTN LineNo,
35 IN CHAR8 *Description
36 )
37{
38 DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
39
40 BREAKPOINT();
41 return 0;
42}
43
Note: See TracBrowser for help on using the repository browser.