Fix headers

This commit is contained in:
Mathieu Maret 2019-05-15 23:20:03 +02:00
parent e1ac9ebd9d
commit 03c74c68d6
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#pragma once
#include "stack.h"
#include "vga.h"
#define assert(p) do { \
if (!(p)) { \

View File

@ -1,4 +1,5 @@
#pragma once
#include "stdint.h"
#include "stdarg.h"
#include "types.h"
uint32_t log2(uint32_t x);

View File

@ -1,6 +1,6 @@
#pragma once
#include "stdarg.h"
#include "stdint.h"
#include "types.h"
// https://wiki.osdev.org/Text_UI
#define BLACK 0x00