15 lines
211 B
C
15 lines
211 B
C
|
|
/* 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);
|
||
|
|
|
||
|
|
#endif
|