Remove startup messages from VM
parent
4f82d230a7
commit
8cfbd164f5
|
@ -28,9 +28,6 @@ void load_image(const char* filename)
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Loading %s...",filename);
|
|
||||||
fflush(stdout);
|
|
||||||
|
|
||||||
/* read it in native byte order */
|
/* read it in native byte order */
|
||||||
fread(&h,sizeof(F_HEADER)/sizeof(CELL),sizeof(CELL),file);
|
fread(&h,sizeof(F_HEADER)/sizeof(CELL),sizeof(CELL),file);
|
||||||
|
|
||||||
|
@ -67,16 +64,10 @@ void load_image(const char* filename)
|
||||||
|
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
|
||||||
printf(" relocating...");
|
|
||||||
fflush(stdout);
|
|
||||||
|
|
||||||
init_objects(&h);
|
init_objects(&h);
|
||||||
|
|
||||||
relocate_data();
|
relocate_data();
|
||||||
relocate_code();
|
relocate_code();
|
||||||
|
|
||||||
printf(" done\n");
|
|
||||||
fflush(stdout);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Save the current image to disk */
|
/* Save the current image to disk */
|
||||||
|
|
Loading…
Reference in New Issue