NetBSD/sys/arch/newsmips/include/cpu.h
tsutsui ffe6ce9037 bootloader requires systype values so change
#ifdef _KERNEL -> #if defined(_KERNEL) || defined(_STANDALONE)
2001-09-20 12:29:48 +00:00

18 lines
302 B
C

/* $NetBSD: cpu.h,v 1.14 2001/09/20 12:29:48 tsutsui Exp $ */
#ifndef _NEWSMIPS_CPU_H_
#define _NEWSMIPS_CPU_H_
#include <mips/cpu.h>
#if defined(_KERNEL) || defined(_STANDALONE)
#ifndef _LOCORE
extern int systype;
#define NEWS3400 1
#define NEWS5000 2
#endif
#endif
#endif /* _NEWSMIPS_CPU_H_ */