-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpic.h
More file actions
22 lines (15 loc) · 695 Bytes
/
Copy pathpic.h
File metadata and controls
22 lines (15 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ** por compatibilidad se omiten tildes **
================================================================================
TRABAJO PRACTICO 3 - System Programming - ORGANIZACION DE COMPUTADOR II - FCEN
================================================================================
funciones del controlador de interrupciones
*/
#ifndef __PIC_H__
#define __PIC_H__
void resetear_pic(void);
void habilitar_pic();
void deshabilitar_pic();
static __inline __attribute__((always_inline)) void outb(int port, unsigned char data);
__inline __attribute__((always_inline)) void fin_intr_pic1(void);
__inline __attribute__((always_inline)) void fin_intr_pic2(void);
#endif /* !__PIC_H__ */