10 lines
144 B
C
10 lines
144 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include "../include/types.h"
|
|
|
|
uint8 inportb(uint16 _port);
|
|
void outportb(uint16 _port, uint8 _data);
|
|
|
|
#endif
|
|
|