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

#include<types.h>

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

#endif