Print out build date of software and note that this is the 68kmla version on the startup banner

This commit is contained in:
akuker
2020-08-09 14:15:47 -05:00
parent 794d2629bc
commit baeef717c4
2 changed files with 6 additions and 3 deletions

View File

@@ -94,7 +94,8 @@ int main(int argc, char* argv[])
fprintf(stderr, " FILE := image file path\n");
fprintf(stderr, " CMD is 'attach' or 'insert' and FILE parameter is required.\n");
fprintf(stderr, "Usage: %s -l\n", argv[0]);
fprintf(stderr, " Print device list.\n");
fprintf(stderr, " Print device list.\n\n");
fprintf(stderr,"Build on %s at %s\n", __DATE__, __TIME__);
exit(0);
}