prism2.device: Compiler delint
[AROS.git] / arch / all-hosted / bootstrap / kickstart.c
blobfbfb46427b654c84d018285281f0908586dc94dc
1 #include <aros/kernel.h>
2 #include <runtime.h>
4 #include "kickstart.h"
6 /*
7 * This routine runs a kickstart.
8 * It's in a separate file because on some hosts (UNIX for example) the process can be
9 * more complicated.
11 int kick(int __aros (*addr)(), struct TagItem *msg)
13 int i = addr(msg, AROS_BOOT_MAGIC);
15 DisplayError("Kernel exited with code %d", i);
16 return i;