add place-holder directory for the a3000 wd533c93 scsi controller implementation.
[AROS.git] / arch / .unmaintained / m68k-pp-native / boot-elf / exec.c
blobfeb09f743c5053676d519374f49382eaf3842591
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
8 extern void main_init(void * memory, ULONG memSize);
10 int main(void)
12 main_init((void *)0x20000,0x4000);
13 return 0;