#include "syscall.h" int main() { // Make c_str to identify that we are in simple program char sp[16]; sp[0] = 'S'; sp[1] = 'i'; sp[2] = 'm'; sp[3] = 'p'; sp[4] = 'l'; sp[5] = 'e'; sp[6] = ' '; sp[7] = 'P'; sp[8] = 'r'; sp[9] = 'o'; sp[10] = 'g'; sp[11] = 'r'; sp[12] = 'a'; sp[13] = 'm'; sp[14] = '\n'; sp[15] = '\0'; // Write c_str sp of size 15 to ConsoleOut Write(sp,16,1); // Calling Exit!! Exit(0); }