Having found rust wasn't going to work, I've hacked up a rough core of the
cons space in C. None of this is tested.
This commit is contained in:
parent
655526afac
commit
2e77d2beb6
8 changed files with 398 additions and 0 deletions
22
src/init.c
Normal file
22
src/init.c
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* init.c
|
||||
*
|
||||
* Start up and initialise the environement - just enough to get working and (ultimately)
|
||||
* hand off to the executive.
|
||||
*
|
||||
*
|
||||
* (c) 2017 Simon Brooke <simon@journeyman.cc>
|
||||
* Licensed under GPL version 2.0, or, at your option, any later version.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "version.h"
|
||||
#include "conspage.h"
|
||||
|
||||
int main (int argc, char *argv[]) {
|
||||
printf( "Post scarcity software environment version %s\n", VERSION);
|
||||
conspagesinit();
|
||||
|
||||
return(0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue