Files
quark-kernel/src/quarkkernel.cpp
2019-11-26 15:23:54 -06:00

14 lines
260 B
C++

#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;
}