1 2 3 4 5 6 7 8 9
#ifndef ASM_H #define ASM_H #include<types.h> extern uint8_t ioport_in(uint8_t port); extern void ioport_out(uint8_t port, char data); #endif