1 /* $NetBSD: bf_enc.S,v 1.2 2003/11/28 08:56:48 keihan 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 /* 9 * XXX Should use CPP symbols defined as a result of 10 * XXX `cc -mcpu=pentiumpro'. 11 */ 12 #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU) 13 #include "bf_enc_586.S" 14 #else 15 #include "bf_enc_686.S" 16 #endif 17