14 lines
195 B
C
14 lines
195 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);
|
||
|
|
||
|
#endif /* !PIC_H */
|