Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.4
      1 /*	$NetBSD: cpu.h,v 1.4 2002/03/03 14:28:50 uch Exp $	*/
      2 #ifndef _EVBSH3_CPU_H_
      3 #define _EVBSH3_CPU_H_
      4 
      5 #include <sh3/cpu.h>
      6 
      7 /*
      8  * CTL_MACHDEP definitions.
      9  */
     10 #define	CPU_CONSDEV		1	/* dev_t: console terminal device */
     11 #define	CPU_LOADANDRESET	2	/* load kernel image and reset */
     12 #define	CPU_MAXID		3	/* number of valid machdep ids */
     13 
     14 #define	CTL_MACHDEP_NAMES { \
     15 	{ 0, 0 }, \
     16 	{ "console_device", CTLTYPE_STRUCT }, \
     17 	{ "load_and_reset", CTLTYPE_INT }, \
     18 }
     19 #endif /* _EVBSH3_CPU_H_ */
     20