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:
simon 2017-01-06 15:25:16 +00:00
parent 655526afac
commit 2e77d2beb6
8 changed files with 398 additions and 0 deletions

22
src/init.c Normal file
View 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);
}