summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S
blob: 5e0a36d705d27463359b95932e7ba22a901cd3b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* bsp_irq_asm.S
 *
 *  This file contains the implementation of the IRQ handler
 *  for a specific BSP
 *
 *  CopyRight (C) 2000 Canon Research France SA.
 *  Emmanuel Raguet,  mailto:raguet@crf.canon.fr
 *
 *  The license and distribution terms for this file may be
 *  found in found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *
 */

#define __asm__
#include  <registers.h>
		
/* 
 * Function to obtain, execute an IT handler and acknowledge the IT 
 */

	.globl ExecuteITHandler
	
ExecuteITHandler :	

  /*
   * Here is the code to execute the appropriate INT handler 
   */
	
  b	ReturnFromHandler	/* return to ISR handler */
	
/* 
 * Function to acknowledge the IT controller 
 */
	.globl AckControler
	
AckControler:	  

  /*
   * Here is the code to acknowledge the PIC
   */
	
  b	ReturnFromAck		/* return to ISR handler */