Copyright clean-up (part 1):
[AROS.git] / compiler / libinit / kickentry.c
blob63e14876d1ed54fc4ebbeb6611876da15e426a12
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /*
7 * This is the special version of entry code for kickstart modules.
8 * The difference is declaration of absolute SysBase symbol.
9 * Note that the bootstrap can relocate this symbol if necessary.
12 #include <aros/system.h>
14 int __startup __kick_entry(void)
16 return -1;
19 asm(".globl SysBase\n"
20 ".set SysBase, 4");