aboutsummaryrefslogtreecommitdiff
path: root/src/io/io.h
blob: 41042c39c96edce1d6031ce970d4c6d8ac854264 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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);

#endif