Untitled_Kernel/include/asm.h

16 lines
230 B
C
Raw Normal View History

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