15 lines
234 B
C
15 lines
234 B
C
#ifndef PIC_H
|
|
#define PIC_H
|
|
|
|
#define MASTER_PIC_A 0x20
|
|
#define MASTER_PIC_B 0x21
|
|
#define SLAVE_PIC_A 0xa0
|
|
#define SLAVE_PIC_B 0xa1
|
|
|
|
#define ICW1 0x11
|
|
|
|
void init_pic(void);
|
|
void acknowledge(uint32_t int_vector);
|
|
|
|
#endif /* !PIC_H */
|