summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libbsp/mips/malta/startup/inittlb.c
blob: 37176b213763aa125477341a72548c2c202ca8b3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                           
                                         














                                      
/**
 *  @file
 */

/*
 *  COPYRIGHT (c) 1989-2012.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#include <rtems/mips/idtcpu.h>

extern void resettlb( int i );

void init_tlb(void);

void init_tlb(void)
{
  int i;

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