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