From e2c1eaaa8e3dd9adfe0a4cf5830ab0bc36635ed5 Mon Sep 17 00:00:00 2001 From: MonkeyGG2 Date: Sun, 18 Feb 2024 11:50:48 -0500 Subject: [PATCH] fixed slight errors --- sys/include/memory.h | 4 ++-- sys/include/process.h | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) 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