diff --git a/sys/include/memory.h b/sys/include/memory.h index b0c184a..d26ebad 100644 --- a/sys/include/memory.h +++ b/sys/include/memory.h @@ -22,7 +22,7 @@ #define START 0xb80f0 #define SIZE 16384 -/* +/* * How memory is mapped */ #define STACK_START 0x000b8fa0 @@ -34,7 +34,7 @@ struct allocated { void *ref; s32 size; -} +}; void memory_init(void); diff --git a/sys/include/process.h b/sys/include/process.h index 4f7b87d..d6aa490 100644 --- a/sys/include/process.h +++ b/sys/include/process.h @@ -1,10 +1,12 @@ #ifndef PROCESS_H #define PROCESS_H +#include + struct process { void *prstart; s32 prsize; s32 pid; -} +}; #endif