blob: ee15f00d376513d65e2080b658ac9dc713f30609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef SOURCE_ASM_H
#define SOURCE_ASM_H
#include<types.h>
#define PIC1_COMMAND_PORT 0x20
#define PIC1_DATA_PORT 0x21
#define PIC2_COMMAND_PORT 0xA0
#define PIC2_DATA_PORT 0xA1
extern uint8_t ioport_in(uint8_t port);
extern void ioport_out(uint8_t port, int data);
#endif
|