Home | History | Annotate | Line # | Download | only in include
      1  1.1  thorpej /*	$NetBSD: fcode.h,v 1.1 2023/12/27 17:35:37 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej #ifndef _SUN3_FCODE_H_
      4  1.1  thorpej #define	_SUN3_FCODE_H_
      5  1.1  thorpej 
      6  1.1  thorpej #include <m68k/fcode.h>
      7  1.1  thorpej 
      8  1.1  thorpej /*
      9  1.1  thorpej  * On the sun3, Function Code 3 is control space.  On the sun3x, it's
     10  1.1  thorpej  * Function Code 4.
     11  1.1  thorpej  */
     12  1.1  thorpej #ifdef _SUN3X_
     13  1.1  thorpej #define	FC_CONTROL	FC_UNDEF4
     14  1.1  thorpej #else
     15  1.1  thorpej #define	FC_CONTROL	FC_UNDEF3
     16  1.1  thorpej #endif /* _SUN3X_ */
     17  1.1  thorpej 
     18  1.1  thorpej #endif /* _SUN3_FCODE_H_ */
     19