Subversion Repositories HelenOS-historic

Rev

Rev 1480 | Rev 1756 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1480 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup ppc32 
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __PIC_H_
35
#ifndef __PIC_H_
30
#define __PIC_H_
36
#define __PIC_H_
31
 
37
 
32
/* PIC handler, read from pearpc source codes */
38
/* PIC handler, read from pearpc source codes */
33
#define PIC_HW_ADDR 0x80800000
39
#define PIC_HW_ADDR 0x80800000
Line 44... Line 50...
44
void pic_disable_interrupt(int intnum);
50
void pic_disable_interrupt(int intnum);
45
void pic_ack_interrupt(int intnum);
51
void pic_ack_interrupt(int intnum);
46
int pic_get_pending(void);
52
int pic_get_pending(void);
47
 
53
 
48
#endif
54
#endif
-
 
55
 
-
 
56
 /** @}
-
 
57
 */
-
 
58