Updated copyrights and versions

This commit is contained in:
Tony Kuker 2021-10-29 21:55:24 -05:00
parent e90edc0506
commit 21a8805d5d
5 changed files with 8 additions and 4 deletions

View File

@ -2,7 +2,8 @@ BSD 3-Clause License
Copyright (C) 2001-2006 (ytanaka@ipc-tokai.or.jp) Copyright (C) 2001-2006 (ytanaka@ipc-tokai.or.jp)
Copyright (C) 2014-2020 GIMONS Copyright (C) 2014-2020 GIMONS
Copyright (c) 2020, akuker Copyright (c) 2020-2021 akuker
Copyright (c) RaSCSI project contributors (github.com/akuker/rascsi)
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

View File

@ -5,6 +5,7 @@
// //
// Powered by XM6 TypeG Technology. // Powered by XM6 TypeG Technology.
// Copyright (C) 2016-2020 GIMONS // Copyright (C) 2016-2020 GIMONS
// Copyright (C) 2020-2021 Contributors to the RaSCSI project
// [ RaSCSI main ] // [ RaSCSI main ]
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
@ -102,6 +103,7 @@ void Banner(int argc, char* argv[])
__TIME__); __TIME__);
FPRT(stdout,"Powered by XM6 TypeG Technology / "); FPRT(stdout,"Powered by XM6 TypeG Technology / ");
FPRT(stdout,"Copyright (C) 2016-2020 GIMONS\n"); FPRT(stdout,"Copyright (C) 2016-2020 GIMONS\n");
FPRT(stdout,"Copyright (C) 2020-2021 Contributors to the RaSCSI project\n");
FPRT(stdout,"Connect type : %s\n", CONNECT_DESC); FPRT(stdout,"Connect type : %s\n", CONNECT_DESC);
if ((argc > 1 && strcmp(argv[1], "-h") == 0) || if ((argc > 1 && strcmp(argv[1], "-h") == 0) ||

View File

@ -14,8 +14,8 @@
// The following should be updated for each release // The following should be updated for each release
const int rascsi_major_version = 21; // Last two digits of year const int rascsi_major_version = 21; // Last two digits of year
const int rascsi_minor_version = 99; // Month const int rascsi_minor_version = 10; // Month
const int rascsi_patch_version = -1; // Patch number - increment for each update const int rascsi_patch_version = 1; // Patch number - increment for each update
static char rascsi_version_string[30]; // Allow for string up to "XX.XX.XXX" + null character + "development build" static char rascsi_version_string[30]; // Allow for string up to "XX.XX.XXX" + null character + "development build"

View File

@ -5,6 +5,7 @@
// //
// Powered by XM6 TypeG Technology. // Powered by XM6 TypeG Technology.
// Copyright (C) 2016-2020 GIMONS // Copyright (C) 2016-2020 GIMONS
// Copyright (C) 2020-2021 Contributors to the RaSCSI project
// [ Send Control Command ] // [ Send Control Command ]
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@ -95,7 +95,7 @@ void Banner(int argc, char* argv[])
__TIME__); __TIME__);
LOGINFO("Powered by XM6 TypeG Technology "); LOGINFO("Powered by XM6 TypeG Technology ");
LOGINFO("Copyright (C) 2016-2020 GIMONS"); LOGINFO("Copyright (C) 2016-2020 GIMONS");
LOGINFO("Copyright (C) 2020 akuker"); LOGINFO("Copyright (C) 2020-2021 Contributors to the RaSCSI project");
LOGINFO("Connect type : %s", CONNECT_DESC); LOGINFO("Connect type : %s", CONNECT_DESC);
LOGINFO(" %s - Value Change Dump file that can be opened with GTKWave", log_file_name); LOGINFO(" %s - Value Change Dump file that can be opened with GTKWave", log_file_name);