diff options
author | Benji Dial <Benji3.141@gmail.com> | 2019-12-24 22:31:22 -0500 |
---|---|---|
committer | Benji Dial <Benji3.141@gmail.com> | 2019-12-24 22:31:22 -0500 |
commit | f5f0f5ddae199121daebcd2213aabd81686cc074 (patch) | |
tree | 91d8d29ea497e282f841849e620d43f8fcafcfcc /src/kernel/proc.h | |
parent | a947a7a143029ee8ef5cb4a4232d7439b8a79670 (diff) | |
download | portland-os-f5f0f5ddae199121daebcd2213aabd81686cc074.tar.gz |
start of 0.0.9 branch, using multiboot this time
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r-- | src/kernel/proc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h index 893b84e..261ae6b 100644 --- a/src/kernel/proc.h +++ b/src/kernel/proc.h @@ -24,10 +24,10 @@ OF THIS SOFTWARE. struct proc_info { void *memory_start; - uint16_t n_pages; + void *memory_end; }; -#define PROCS ((struct proc_info *)*(uint32_t *)0x00000510) +struct proc_info *proc_table; uint16_t new_proc(uint8_t *file); void end_proc(uint16_t id); |