aboutsummaryrefslogtreecommitdiff
path: root/src/io/io.h
blob: e00a5f058e7c40f4dcbac15f76f085dcbf98acef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MELVIX_IO_H
#define MELVIX_IO_H

#include <stdint.h>

unsigned char receive(unsigned short port);

void send(unsigned short port, unsigned char data);

void reboot();

#endif