OSDN Git Service

add microblaze PLB
[hos/hos-v4a.git] / kernel / source / arch / irc / mb / intc / ena_int.c
1 /** 
2  *  Hyper Operating System V4 Advance
3  *
4  * @file  ena_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 ena_int(INTNO intno)
19 {
20         *_KERNEL_IRC_SIE = (1 << intno);
21         
22         return E_OK;
23 }
24
25
26 /* end of file */