Remove startup messages from VM

slava 2006-12-10 20:02:11 +00:00
parent 4f82d230a7
commit 8cfbd164f5
1 changed files with 0 additions and 9 deletions

View File

@ -28,9 +28,6 @@ void load_image(const char* filename)
exit(1);
}
printf("Loading %s...",filename);
fflush(stdout);
/* read it in native byte order */
fread(&h,sizeof(F_HEADER)/sizeof(CELL),sizeof(CELL),file);
@ -67,16 +64,10 @@ void load_image(const char* filename)
fclose(file);
printf(" relocating...");
fflush(stdout);
init_objects(&h);
relocate_data();
relocate_code();
printf(" done\n");
fflush(stdout);
}
/* Save the current image to disk */