repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add place-holder directory for the a3000 wd533c93 scsi controller implementation.
[AROS.git]
/
arch
/
.unmaintained
/
m68k-pp-native
/
boot-elf
/
exec.c
blob
feb09f743c5053676d519374f49382eaf3842591
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <exec/types.h>
7
8
extern
void
main_init
(
void
*
memory
,
ULONG memSize
);
9
10
int
main
(
void
)
11
{
12
main_init
((
void
*)
0x20000
,
0x4000
);
13
return
0
;
14
}