blob: ab5ce4afca0947816a961c60bc91dd7ef6022f7f [file] [log] [blame]
swissChilid8137922021-02-17 15:34:07 -08001#pragma once
2
3#include "kint.h"
4
5void outb(ushort port, uchar val);
6uchar inb(ushort port);
7ushort inw(ushort port);
8
9void *memset(void *s, int c, size_t n);
10void *memcpy(void *dest, const void *src, size_t n);
swissChili9b3584b2021-02-18 13:57:27 -080011
12void io_wait();