blob: 88db34bf5a6308e0aef9a9842c49dd39f18b1229 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// MIT License, Copyright (c) 2021 Marvin Borner
#ifndef CPU_H
#define CPU_H
#include <def.h>
u8 inb(u16 port);
u16 inw(u16 port);
void outb(u16 port, u8 data);
#endif
|