use the locations specified in the bcm2708_boot header
[AROS.git] / rom / kernel / putchar.c
blob35e6d8904a5eca8f83f68e2c21222f307eb2e53c
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <aros/kernel.h>
10 #include <kernel_base.h>
11 #include <kernel_debug.h>
13 /*****************************************************************************
15 NAME */
16 #include <proto/kernel.h>
18 AROS_LH1(void, KrnPutChar,
20 /* SYNOPSIS */
21 AROS_LHA(char, c, D0),
23 /* LOCATION */
24 struct KernelBase *, KernelBase, 25, Kernel)
26 /* FUNCTION
27 Output a single character to low-level debug output stream
29 INPUTS
30 c - A character to output
32 RESULT
33 None
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
44 During very early system startup this function can be called
45 directly with KernelBase set to NULL. Architecture-specific
46 implementations of this function need to take care of it.
48 ******************************************************************************/
50 AROS_LIBFUNC_INIT
52 krnPutC(c, KernelBase);
54 AROS_LIBFUNC_EXIT