# the compiler used as HOSTED_CC (must match the native compiler).
# Often this is not possible at all, and you just have to build
# the assym.h file by hand on some other machine. -gwr
-genassym: genassym.i
+genassym: ${SUN3}/sun3/genassym.c
+ ${CC} ${CPPFLAGS} -E $< > $@.i
${HOSTED_CC} -o $@ $@.i
-genassym.i: ${SUN3}/sun3/genassym.c
- ${CC} ${CPPFLAGS} -E ${SUN3}/sun3/genassym.c > $@
-
param.c: $S/conf/param.c
rm -f param.c
cp $S/conf/param.c .
-/* $OpenBSD: genassym.c,v 1.7 1997/02/14 21:13:49 kstailey Exp $ */
+/* $OpenBSD: genassym.c,v 1.8 1997/02/14 21:53:18 kstailey Exp $ */
/* $NetBSD: genassym.c,v 1.32 1996/10/23 16:39:27 gwr Exp $ */
/*
def("FPF_REGS", &fpf->fpf_regs[0]);
def("FPF_FPCR", &fpf->fpf_fpcr);
+ /* SPL values */
+ def("SPL1", PSL_S | PSL_IPL1);
+ def("SPL2", PSL_S | PSL_IPL2);
+ def("SPL3", PSL_S | PSL_IPL3);
+ def("SPL4", PSL_S | PSL_IPL4);
+ def("SPL5", PSL_S | PSL_IPL5);
+ def("SPL6", PSL_S | PSL_IPL6);
+
exit(0);
}