summaryrefslogtreecommitdiff
path: root/src/asm.h
blob: 1d61b88ea369150df1354b654be7de249b2480aa (plain)
1
2
3
4
5
6
7
8
9
#ifndef ASM_H
#define ASM_H

#include"types.h"

extern uint8_t ioport_in(uint8_t port);
extern void ioport_out(uint8_t port, char data);

#endif