source: rtems/bsps/mips/rbtx4925/start/inittlb.c @ e0dd8a5a

5
Last change on this file since e0dd8a5a was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 212 bytes
Line 
1/*
2 *  inittlb.c
3 */
4
5#include <bsp.h>
6#include <rtems/mips/idtcpu.h>
7
8extern void resettlb( int i );
9
10void init_tlb(void)
11{
12  int i;
13
14        for (i = 0; i < N_TLB_ENTRIES; i++ )
15                resettlb(i);
16}
17
Note: See TracBrowser for help on using the repository browser.