source: rtems/c/src/lib/libbsp/mips64orion/p4000/startup/inittlb.c @ 73b943bc

4.104.114.84.95
Last change on this file since 73b943bc was 73b943bc, checked in by Joel Sherrill <joel.sherrill@…>, on 03/31/99 at 23:21:19

Fixed paths to include files so this will build.

  • Property mode set to 100644
File size: 179 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <idtcpu.h>
6
7extern void resettlb( int i );
8
9void init_tlb(void)
10{
11  int i;
12
13        for (i = 0; i < N_TLB_ENTRIES; i++ )
14                resettlb(i);
15}
16
Note: See TracBrowser for help on using the repository browser.