- Exec builds and links after stoling stuff from NicJA :) still needs a .bss section
[AROS.git] / arch / arm-raspidzy / exec / platform_init.c
blob0526c0b010660a66a6b260561e5f5353ee7d23a8
1 /*
2 Copyright © 2013, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #define DEBUG 0
8 #include <aros/debug.h>
9 #include <aros/kernel.h>
10 #include <aros/symbolsets.h>
11 #include <exec/memory.h>
12 #include <exec/tasks.h>
13 #include <exec/alerts.h>
14 #include <exec/execbase.h>
15 #include <asm/io.h>
16 #include <proto/exec.h>
17 #include <strings.h>
19 static int PlatformInit(struct ExecBase *SysBase)
21 return TRUE;
24 ADD2INITLIB(PlatformInit, 0)