Home | History | Annotate | Line # | Download | only in i386
bf_enc.S revision 1.1.2.2
      1 /*	$NetBSD: bf_enc.S,v 1.1.2.2 2001/10/01 12:44:02 fvdl 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