1 1.1.14.2 nathanw /* $NetBSD: bf_enc.S,v 1.1.14.2 2002/04/01 18:48:05 nathanw Exp $ */ 2 1.1.14.2 nathanw 3 1.1.14.2 nathanw /* 4 1.1.14.2 nathanw * Written by Jason R. Thorpe <thorpej (at) zembu.com> and Thor Lancelot Simon 5 1.1.14.2 nathanw * <tls (at) netbsd.org>. Public domain. 6 1.1.14.2 nathanw */ 7 1.1.14.2 nathanw 8 1.1.14.2 nathanw /* 9 1.1.14.2 nathanw * XXX Should use CPP symbols defined as a result of 10 1.1.14.2 nathanw * XXX `cc -mcpu=pentiumpro'. 11 1.1.14.2 nathanw */ 12 1.1.14.2 nathanw #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU) 13 1.1.14.2 nathanw #include "bf_enc_586.S" 14 1.1.14.2 nathanw #else 15 1.1.14.2 nathanw #include "bf_enc_686.S" 16 1.1.14.2 nathanw #endif 17