Lots more code written, and I think most of it's OK; but it doesn't compile yet.
This commit is contained in:
parent
604fca3c24
commit
6c4be8f283
19 changed files with 634 additions and 7 deletions
14
src/c/memory/memory.c
Normal file
14
src/c/memory/memory.c
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* memory/memory.c
|
||||
*
|
||||
* The memory management subsystem.
|
||||
*
|
||||
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
||||
* Licensed under GPL version 2.0, or, at your option, any later version.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int initialise_memory() {
|
||||
fprintf( stderr, "TODO: Implement initialise_memory()");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue