9 lines
134 B
C
9 lines
134 B
C
#ifndef IO_H
|
|
#define IO_H
|
|
|
|
#include "types.h"
|
|
|
|
void outb(uint16_t portnumber, uint8_t data);
|
|
uint8_t inb(uint16_t portnumber);
|
|
|
|
#endif |