summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips/rbtx4938/startup/inittlb.c
blob: 40df1612864293cd439bcd624af2572884dff077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *  inittlb.c,v 1.2 1999/03/31 23:21:19 joel Exp
 */

#include <rtems/mips/idtcpu.h>

extern void resettlb( int i );

void init_tlb(void)
{
  int i;

        for (i = 0; i < N_TLB_ENTRIES; i++ )
                resettlb(i);
}