Sync/include/kernel/utils.h
Jenny Curle 245d09b056 Implemented IDT
But something's wrong with the GDT
Next up is a Serial Console
2019-04-07 13:16:53 +01:00

15 lines
274 B
C
Executable File

#pragma once
#include <stddef.h>
/* A temporary file, to get the system compiling. */
size_t strlen(const char*);
unsigned char inb(unsigned short);
void outb(unsigned short, unsigned char);
void memcpy(void*, void*, size_t);
void memset(void*, int, size_t);