11 lines
176 B
C
11 lines
176 B
C
#ifndef MYOS_INCLUDE_PORTMAP_H
|
|
|
|
#define MYOS_INCLUDE_PORTMAP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t inb(uint16_t port);
|
|
|
|
void outb(uint16_t port, uint8_t val);
|
|
|
|
#endif |