Nigel
01fcb0aa15
* Moved tests to a different folder * Adjusted the memory map address locations * Improved readability of `kernel.cpp`
11 lines
157 B
C
11 lines
157 B
C
#pragma once
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include "../terminal/kterm.h"
|
|
|
|
void initHeap();
|
|
|
|
void* malloc (size_t size );
|
|
void free(void* addr);
|
|
|