From dc047799d62c0bb3c287f83e8f498195ca411319 Mon Sep 17 00:00:00 2001 From: Cary R Date: Sat, 20 Jan 2024 17:50:57 -0800 Subject: [PATCH] Update displayed Copyright --- driver/main.c | 2 +- ivlpp/main.c | 2 +- main.cc | 2 +- tgt-blif/blif.cc | 4 ++-- tgt-null/null.c | 4 ++-- tgt-pcb/pcb.cc | 4 ++-- tgt-sizer/sizer.cc | 4 ++-- tgt-stub/stub.c | 4 ++-- tgt-vhdl/vhdl.cc | 4 ++-- tgt-vlog95/vlog95.c | 2 +- tgt-vvp/vvp.c | 2 +- vhdlpp/main.cc | 2 +- vvp/main.cc | 2 +- 13 files changed, 19 insertions(+), 19 deletions(-) diff --git a/driver/main.c b/driver/main.c index 090d6c36a..1eeabd493 100644 --- a/driver/main.c +++ b/driver/main.c @@ -1,5 +1,5 @@ const char COPYRIGHT[] = - "Copyright (c) 2000-2023 Stephen Williams (steve@icarus.com)"; + "Copyright (c) 2000-2024 Stephen Williams (steve@icarus.com)"; /* * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU diff --git a/ivlpp/main.c b/ivlpp/main.c index 2c67828ab..dc641eb44 100644 --- a/ivlpp/main.c +++ b/ivlpp/main.c @@ -1,5 +1,5 @@ const char COPYRIGHT[] = - "Copyright (c) 1999-2023 Stephen Williams (steve@icarus.com)"; + "Copyright (c) 1999-2024 Stephen Williams (steve@icarus.com)"; /* * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU diff --git a/main.cc b/main.cc index 0f3763b28..39bc8ebff 100644 --- a/main.cc +++ b/main.cc @@ -1,5 +1,5 @@ const char COPYRIGHT[] = - "Copyright (c) 1998-2023 Stephen Williams (steve@icarus.com)"; + "Copyright (c) 1998-2024 Stephen Williams (steve@icarus.com)"; /* * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU diff --git a/tgt-blif/blif.cc b/tgt-blif/blif.cc index cdd9f7202..9e54b8dff 100644 --- a/tgt-blif/blif.cc +++ b/tgt-blif/blif.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2023 Stephen Williams (steve@icarus.com) + * Copyright (c) 2013-2024 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -35,7 +35,7 @@ using namespace std; static const char*version_string = "Icarus Verilog BLIF Code Generator " VERSION " (" VERSION_TAG ")\n\n" -"Copyright (c) 2013-2023 Stephen Williams (steve@icarus.com)\n\n" +"Copyright (c) 2013-2024 Stephen Williams (steve@icarus.com)\n\n" " This program is free software; you can redistribute it and/or modify\n" " it under the terms of the GNU General Public License as published by\n" " the Free Software Foundation; either version 2 of the License, or\n" diff --git a/tgt-null/null.c b/tgt-null/null.c index fe7333aff..50a97612c 100644 --- a/tgt-null/null.c +++ b/tgt-null/null.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000-2023 Stephen Williams (steve@icarus.com) + * Copyright (c) 2000-2024 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -30,7 +30,7 @@ static const char*version_string = "Icarus Verilog NULL Code Generator " VERSION " (" VERSION_TAG ")\n\n" -"Copyright (c) 2000-2023 Stephen Williams (steve@icarus.com)\n\n" +"Copyright (c) 2000-2024 Stephen Williams (steve@icarus.com)\n\n" " This program is free software; you can redistribute it and/or modify\n" " it under the terms of the GNU General Public License as published by\n" " the Free Software Foundation; either version 2 of the License, or\n" diff --git a/tgt-pcb/pcb.cc b/tgt-pcb/pcb.cc index 95380b32f..3cb438977 100644 --- a/tgt-pcb/pcb.cc +++ b/tgt-pcb/pcb.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2023 Stephen Williams (steve@icarus.com) + * Copyright (c) 2011-2024 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -32,7 +32,7 @@ static const char*version_string = "Icarus Verilog PCB Netlist Generator " VERSION " (" VERSION_TAG ")\n\n" -"Copyright (c) 2011-2023 Stephen Williams (steve@icarus.com)\n\n" +"Copyright (c) 2011-2024 Stephen Williams (steve@icarus.com)\n\n" " This program is free software; you can redistribute it and/or modify\n" " it under the terms of the GNU General Public License as published by\n" " the Free Software Foundation; either version 2 of the License, or\n" diff --git a/tgt-sizer/sizer.cc b/tgt-sizer/sizer.cc index d13d42130..d533e7f01 100644 --- a/tgt-sizer/sizer.cc +++ b/tgt-sizer/sizer.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2023 Stephen Williams (steve@icarus.com) + * Copyright (c) 2014-2024 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -34,7 +34,7 @@ using namespace std; static const char*version_string = "Icarus Verilog SIZER Statistics Generator " VERSION " (" VERSION_TAG ")\n\n" -"Copyright (c) 2014-2023 Stephen Williams (steve@icarus.com)\n\n" +"Copyright (c) 2014-2024 Stephen Williams (steve@icarus.com)\n\n" " This program is free software; you can redistribute it and/or modify\n" " it under the terms of the GNU General Public License as published by\n" " the Free Software Foundation; either version 2 of the License, or\n" diff --git a/tgt-stub/stub.c b/tgt-stub/stub.c index 652ec0e57..d8b49c8e6 100644 --- a/tgt-stub/stub.c +++ b/tgt-stub/stub.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000-2023 Stephen Williams (steve@icarus.com) + * Copyright (c) 2000-2024 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -36,7 +36,7 @@ static const char*version_string = "Icarus Verilog STUB Code Generator " VERSION " (" VERSION_TAG ")\n\n" -"Copyright (c) 2000-2023 Stephen Williams (steve@icarus.com)\n\n" +"Copyright (c) 2000-2024 Stephen Williams (steve@icarus.com)\n\n" " This program is free software; you can redistribute it and/or modify\n" " it under the terms of the GNU General Public License as published by\n" " the Free Software Foundation; either version 2 of the License, or\n" diff --git a/tgt-vhdl/vhdl.cc b/tgt-vhdl/vhdl.cc index ad7c16ff1..c409ae86d 100644 --- a/tgt-vhdl/vhdl.cc +++ b/tgt-vhdl/vhdl.cc @@ -1,7 +1,7 @@ /* * VHDL code generator for Icarus Verilog. * - * Copyright (C) 2008-2023 Nick Gasson (nick@nickg.me.uk) + * Copyright (C) 2008-2024 Nick Gasson (nick@nickg.me.uk) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ using namespace std; static const char*version_string = "Icarus Verilog VHDL Code Generator " VERSION " (" VERSION_TAG ")\n\n" -"Copyright (C) 2008-2023 Nick Gasson (nick@nickg.me.uk)\n\n" +"Copyright (C) 2008-2024 Nick Gasson (nick@nickg.me.uk)\n\n" " This program is free software; you can redistribute it and/or modify\n" " it under the terms of the GNU General Public License as published by\n" " the Free Software Foundation; either version 2 of the License, or\n" diff --git a/tgt-vlog95/vlog95.c b/tgt-vlog95/vlog95.c index 2555199be..39d9556f0 100644 --- a/tgt-vlog95/vlog95.c +++ b/tgt-vlog95/vlog95.c @@ -1,5 +1,5 @@ #define COPYRIGHT \ - "Copyright (c) 2010-2023 Cary R. (cygcary@yahoo.com)" + "Copyright (c) 2010-2024 Cary R. (cygcary@yahoo.com)" /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tgt-vvp/vvp.c b/tgt-vvp/vvp.c index 68eaadb08..600b1fe38 100644 --- a/tgt-vvp/vvp.c +++ b/tgt-vvp/vvp.c @@ -1,5 +1,5 @@ #define COPYRIGHT \ - "Copyright (c) 2001-2023 Stephen Williams (steve@icarus.com)" + "Copyright (c) 2001-2024 Stephen Williams (steve@icarus.com)" /* * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU diff --git a/vhdlpp/main.cc b/vhdlpp/main.cc index 9c6f57a11..ca1f18132 100644 --- a/vhdlpp/main.cc +++ b/vhdlpp/main.cc @@ -1,6 +1,6 @@ const char COPYRIGHT[] = - "Copyright (c) 2011-2021 Stephen Williams (steve@icarus.com)\n" + "Copyright (c) 2011-2024 Stephen Williams (steve@icarus.com)\n" "Copyright CERN 2012 / Stephen Williams (steve@icarus.com)"; /* * This source code is free software; you can redistribute it diff --git a/vvp/main.cc b/vvp/main.cc index 7253f0e47..68802ee6a 100644 --- a/vvp/main.cc +++ b/vvp/main.cc @@ -1,5 +1,5 @@ const char COPYRIGHT[] = - "Copyright (c) 2001-2023 Stephen Williams (steve@icarus.com)"; + "Copyright (c) 2001-2024 Stephen Williams (steve@icarus.com)"; /* * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU