aboutsummaryrefslogtreecommitdiff
path: root/src/inc/cpu.h
blob: b8897de772be1b3c47a78e6d6ff885d5d7e773ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef CPU_H
#define CPU_H

#include <def.h>

u8 inb(u16 port);
u16 inw(u16 port);
u32 inl(u16 port);
void insl(u16 port, void *addr, int n);

void outb(u16 port, u8 data);
void outw(u16 port, u16 data);
void outl(u16 port, u32 data);

#endif