/* asm.h * Assembly wrappers * * Wrapper functions for using assembly files. */ #ifndef ASM_H #define ASM_H #include void outb(uint16_t port, uint8_t data); uint8_t inb(uint16_t port); #endif