source: rtems/c/src/lib/libbsp/mips/p4000/startup/inittlb.c @ 9c0d032

4.104.114.84.95
Last change on this file since 9c0d032 was 9c0d032, checked in by Joel Sherrill <joel.sherrill@…>, on 09/11/96 at 19:12:43

new files

  • Property mode set to 100644
File size: 191 bytes
RevLine 
[9c0d032]1/*
2 *  $Id$
3 */
4
5#include <rtems/score/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.