Initial commit

This commit is contained in:
2019-11-26 15:23:54 -06:00
commit adf531607d
18 changed files with 1537 additions and 0 deletions

13
src/quarkkernel.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include <stddef.h>
#include <stdint.h>
#if __STDC_HOSTED__ == 1 || __i686__ != 1
#error "ERROR: This program must be compiled for a freestanding environment, and currently only supports the i686 target."
#endif
void main()
{
int x = 2;
x -= 1;
return;
}