source: rtems/cpukit/score/cpu/nios2/nios2-initialize-vectors.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: 574 bytes
RevLine 
[e2d0c68]1/*
2 * Copyright (c) 2011 embedded brains GmbH
3 *
4 * Copyright (c) 2006 Kolja Waschk (rtemsdev/ixo.de)
5 *
6 * COPYRIGHT (c) 1989-2006
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
[c499856]11 * http://www.rtems.org/license/LICENSE.
[e2d0c68]12 */
13
14#ifdef HAVE_CONFIG_H
15  #include "config.h"
16#endif
17
18#include <rtems/score/isr.h>
19
20#include <string.h>
21
22void _CPU_Initialize_vectors( void )
23{
24  memset(_ISR_Vector_table, 0, sizeof(ISR_Handler_entry) * ISR_NUMBER_OF_VECTORS);
25}
Note: See TracBrowser for help on using the repository browser.