mirror of
https://github.com/thewesker/RASCSI.git
synced 2025-12-20 12:21:10 -05:00
Print out build date of software and note that this is the 68kmla version on the startup banner
This commit is contained in:
@@ -78,8 +78,9 @@ void KillHandler(int sig)
|
||||
//---------------------------------------------------------------------------
|
||||
void Banner(int argc, char* argv[])
|
||||
{
|
||||
FPRT(stdout,"SCSI Target Emulator RaSCSI(*^..^*) ");
|
||||
FPRT(stdout,"version %01d.%01d%01d(%s, %s)\n",
|
||||
FPRT(stdout,"SCSI Target Emulator RaSCSI(*^..^*)\n");
|
||||
FPRT(stdout," 68k MLA Edition\n");
|
||||
FPRT(stdout,"Forked from GIMONS version %01d.%01d%01d(%s, %s)\n",
|
||||
(int)((VERSION >> 8) & 0xf),
|
||||
(int)((VERSION >> 4) & 0xf),
|
||||
(int)((VERSION ) & 0xf),
|
||||
@@ -88,6 +89,7 @@ void Banner(int argc, char* argv[])
|
||||
FPRT(stdout,"Powered by XM6 TypeG Technology / ");
|
||||
FPRT(stdout,"Copyright (C) 2016-2020 GIMONS\n");
|
||||
FPRT(stdout,"Connect type : %s\n", CONNECT_DESC);
|
||||
FPRT(stdout,"Build on %s at %s\n", __DATE__, __TIME__);
|
||||
|
||||
if ((argc > 1 && strcmp(argv[1], "-h") == 0) ||
|
||||
(argc > 1 && strcmp(argv[1], "--help") == 0)){
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user