use the locations specified in the bcm2708_boot header
[AROS.git] / rom / kernel / kernel_debug.c
blobb258d18d9fd2d6e9fca0dae1166f1de413f4d711
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>
14 * Character output function. All debug output ends up there.
15 * This function needs to be implemented for every supported architecture.
16 * KernelBase is an optional parameter here. During
17 * very early startup it can be NULL.
20 int krnPutC(int chr, struct KernelBase *KernelBase)
22 /* The implementation is architecture-specific */
23 return 1;