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

4.115
Last change on this file since a36d1b4 was a36d1b4, checked in by Jennifer Averett <jennifer.averett@…>, on 04/04/12 at 17:21:15

Add MIPS/Malta BSP.

  • 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.com/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.