blob: e8261d5e9bae0049285e745d78ebab57b208950d (
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(uint32_t port);
extern void ioport_out(uint32_t port, uint32_t data);
#endif
|