source: rtems/c/src/lib/libbsp/mips/malta/startup/inittlb.c @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 447 bytes
Line 
1/**
2 *  @file
3 */
4
5/*
6 *  COPYRIGHT (c) 1989-2012.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#include <rtems/mips/idtcpu.h>
15
16extern void resettlb( int i );
17
18void init_tlb(void);
19
20void init_tlb(void)
21{
22  int i;
23
24  for (i = 0; i < N_TLB_ENTRIES; i++ )
25    resettlb(i);
26}
Note: See TracBrowser for help on using the repository browser.