Merge branch 'main' of git.disroot.org:dvonik/omos-tcnj2024
hi
This commit is contained in:
commit
a634a1d389
@ -22,7 +22,7 @@
|
|||||||
#define START 0xb80f0
|
#define START 0xb80f0
|
||||||
#define SIZE 16384
|
#define SIZE 16384
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* How memory is mapped
|
* How memory is mapped
|
||||||
*/
|
*/
|
||||||
#define STACK_START 0x000b8fa0
|
#define STACK_START 0x000b8fa0
|
||||||
@ -34,7 +34,7 @@
|
|||||||
struct allocated {
|
struct allocated {
|
||||||
void *ref;
|
void *ref;
|
||||||
s32 size;
|
s32 size;
|
||||||
}
|
};
|
||||||
|
|
||||||
void memory_init(void);
|
void memory_init(void);
|
||||||
|
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
#ifndef PROCESS_H
|
#ifndef PROCESS_H
|
||||||
#define PROCESS_H
|
#define PROCESS_H
|
||||||
|
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
struct process {
|
struct process {
|
||||||
void *prstart;
|
void *prstart;
|
||||||
s32 prsize;
|
s32 prsize;
|
||||||
s32 pid;
|
s32 pid;
|
||||||
}
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user