Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:08

0001 /**
0002  * @file
0003  *
0004  * @ingroup RTEMSBSPsSPARCLEON2
0005  *
0006  * @brief Support for gnat/rtems iterrupts and exception handling
0007  */
0008 
0009 /*
0010  * COPYRIGHT (c) 1999.
0011  * European Space Agency.
0012  *
0013  * The license and distribution terms for this file may be
0014  * found in the file LICENSE in this distribution or at
0015  * http://www.rtems.org/license/LICENSE.
0016  *
0017  */
0018 
0019 #include <bsp/gnatcommon.h>
0020 
0021 /*
0022  *  Avoid trap 0x18 which is used by the clock tick, and
0023  *  0x12 (UART B interrupt) which is used by the stub.
0024  */
0025 
0026 void
0027 __gnat_install_handler (void)
0028 {
0029   __gnat_install_handler_common (0x18, 0x12);
0030 }