bf_enc.S revision 1.4 1 /* $NetBSD: bf_enc.S,v 1.4 2007/12/11 23:15:30 lukem Exp $ */
2
3 /*
4 * Written by Jason R. Thorpe <thorpej (at) zembu.com> and Thor Lancelot Simon
5 * <tls (at) NetBSD.org>. Public domain.
6 */
7
8 #include <i386/include/asm.h>
9 __KERNEL_RCSID(0, "$NetBSD: bf_enc.S,v 1.4 2007/12/11 23:15:30 lukem Exp $");
10
11 /*
12 * XXX Should use CPP symbols defined as a result of
13 * XXX `cc -mcpu=pentiumpro'.
14 */
15 #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU)
16 #include "bf_enc_586.S"
17 #else
18 #include "bf_enc_686.S"
19 #endif
20