OSDN Git Service

debug microblaze
[hos/hos-v4a.git] / kernel / source / arch / irc / mb / intc / vclr_int.c
1 /** 
2  *  Hyper Operating System V4 Advance
3  *
4  * @file  vclr_int.c
5  * @brief XILINX AXI INTC
6  *
7  * Copyright (C) 1998-2011 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #include "core/core.h"
13 #include "object/inhobj.h"
14 #include "object/isrobj.h"
15
16
17 /* 割込みのクリア */
18 ER vclr_int(INTNO intno)
19 {
20         *_KERNEL_IRC_IAR = (1 << intno);
21         
22         return E_OK;
23 }
24
25
26 /* end of file */