mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
Edvin Catovic <edvin@gaisler.com> Konrad Eisele <konrad@gaisler.com> PR 827/bsps * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac, times, clock/.cvsignore, clock/Makefile.am, clock/ckinit.c, console/.cvsignore, console/Makefile.am, console/console.c, console/consolereserveresources.c, console/debugputs.c, gnatsupp/.cvsignore, gnatsupp/Makefile.am, gnatsupp/gnatsupp.c, include/.cvsignore, include/Makefile.am, include/bsp.h, include/coverhd.h, include/leon.h, leon_open_eth/.cvsignore, leon_open_eth/Makefile.am, leon_open_eth/leon_open_eth.c, leon_smc91111/.cvsignore, leon_smc91111/Makefile.am, leon_smc91111/leon_smc91111.c, start/.cvsignore, start/Makefile.am, startup/.cvsignore, startup/Makefile.am, startup/linkcmds, startup/setvec.c, startup/spurious.c, timer/.cvsignore, timer/Makefile.am, timer/timer.c, tools/.cvsignore, tools/ChangeLog, tools/Makefile.am, tools/configure.ac, tools/runtest.in, wrapup/.cvsignore, wrapup/Makefile.am: New files.
21 lines
379 B
C
21 lines
379 B
C
/*
|
|
*
|
|
* Support for gnat/rtems interrupts and exception handling.
|
|
* Jiri Gaisler, ESA/ESTEC, 17-02-1999.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
void __gnat_install_handler_common (int t1, int t2);
|
|
|
|
/*
|
|
* Avoid trap 0x18 which is used by the clock tick, and
|
|
* 0x12 (UART B interrupt) which is used by the stub.
|
|
*/
|
|
|
|
void
|
|
__gnat_install_handler ()
|
|
{
|
|
__gnat_install_handler_common (0x18, 0x12);
|
|
}
|