From ebb22450a0f6bd0357a6727bae293b3ed7a8d5e2 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Wed, 18 Oct 1995 10:54:29 +0000 Subject: initial 88k import; code by nivas and based on mach luna88k --- sys/arch/mvme88k/stand/kerncrt/Makefile | 9 +++++++++ sys/arch/mvme88k/stand/kerncrt/kerncrt.c | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 sys/arch/mvme88k/stand/kerncrt/Makefile create mode 100644 sys/arch/mvme88k/stand/kerncrt/kerncrt.c (limited to 'sys/arch/mvme88k/stand/kerncrt') diff --git a/sys/arch/mvme88k/stand/kerncrt/Makefile b/sys/arch/mvme88k/stand/kerncrt/Makefile new file mode 100644 index 00000000000..9645605f8aa --- /dev/null +++ b/sys/arch/mvme88k/stand/kerncrt/Makefile @@ -0,0 +1,9 @@ +OBJ=kerncrt.o +CFLAGS+=-I${.CURDIR}/../include +CFLAGS+=-I${.CURDIR}/../.. +CFLAGS+=-I/usr/src/sys + +SRCS=kerncrt.c +all: kerncrt.o + +.include diff --git a/sys/arch/mvme88k/stand/kerncrt/kerncrt.c b/sys/arch/mvme88k/stand/kerncrt/kerncrt.c new file mode 100644 index 00000000000..a5f04d2398a --- /dev/null +++ b/sys/arch/mvme88k/stand/kerncrt/kerncrt.c @@ -0,0 +1,11 @@ +#include "bug.h" +start(struct bugenv *bugarea) +{ + main(bugarea); + bugreturn(); +} + +__main() +{ + return; +} -- cgit v1.2.3