Merge branch 'main' of git.disroot.org:dvonik/omos-tcnj2024

hi
This commit is contained in:
spikey 2024-02-18 11:51:09 -05:00
commit a634a1d389
2 changed files with 5 additions and 3 deletions

View File

@ -34,7 +34,7 @@
struct allocated {
void *ref;
s32 size;
}
};
void memory_init(void);

View File

@ -1,10 +1,12 @@
#ifndef PROCESS_H
#define PROCESS_H
#include <types.h>
struct process {
void *prstart;
s32 prsize;
s32 pid;
}
};
#endif