source: rtems/c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c @ c903fc2

4.115
Last change on this file since c903fc2 was c903fc2, checked in by Daniel Cederman <cederman@…>, on 05/08/14 at 14:33:08

bsps/sparc: Add copyright and license information

  • Property mode set to 100644
File size: 567 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup sparc_leon2
5 *
6 * @brief Support for gnat/rtems iterrupts and exception handling
7 */
8
9/*
10 * COPYRIGHT (c) 1999.
11 * European Space Agency.
12 *
13 * The license and distribution terms for this file may be
14 * found in the file LICENSE in this distribution or at
15 * http://www.rtems.org/license/LICENSE.
16 *
17 */
18
19#include <bsp/gnatcommon.h>
20
21/*
22 *  Avoid trap 0x18 which is used by the clock tick, and
23 *  0x12 (UART B interrupt) which is used by the stub.
24 */
25
26void
27__gnat_install_handler (void)
28{
29  __gnat_install_handler_common (0x18, 0x12);
30}
Note: See TracBrowser for help on using the repository browser.