//main calling function int main(void) { //Calling prototype OS prototype_os(); return 0; }
// The main method that starts up the prototype operating system int main() { alt_printf("Hello from Nios II!\n"); prototype_os(); return 0; }