Fix NULL and STUB -V output.
Fix the NULL and STUB target -V output to match the other targets.
This commit is contained in:
parent
e416fb6486
commit
4fa2223832
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000 Stephen Williams (steve@icarus.com)
|
* Copyright (c) 2000-2008 Stephen Williams (steve@icarus.com)
|
||||||
*
|
*
|
||||||
* This source code is free software; you can redistribute it
|
* This source code is free software; you can redistribute it
|
||||||
* and/or modify it in source code form under the terms of the GNU
|
* and/or modify it in source code form under the terms of the GNU
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
# include "version.h"
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
# include <string.h>
|
# include <string.h>
|
||||||
|
|
||||||
|
|
@ -27,7 +28,8 @@
|
||||||
# include "ivl_target.h"
|
# include "ivl_target.h"
|
||||||
|
|
||||||
static const char*version_string =
|
static const char*version_string =
|
||||||
"Icarus Verilog NULL Code Generator " VERSION "\n"
|
"Icarus Verilog NULL Code Generator " VERSION " (" VERSION_TAG ")\n\n"
|
||||||
|
"Copyright (c) 2000-2008 Stephen Williams (steve@icarus.com)\n\n"
|
||||||
" This program is free software; you can redistribute it and/or modify\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"
|
" 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"
|
" the Free Software Foundation; either version 2 of the License, or\n"
|
||||||
|
|
@ -38,9 +40,9 @@ static const char*version_string =
|
||||||
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
|
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
|
||||||
" GNU General Public License for more details.\n"
|
" GNU General Public License for more details.\n"
|
||||||
"\n"
|
"\n"
|
||||||
" You should have received a copy of the GNU General Public License\n"
|
" You should have received a copy of the GNU General Public License along\n"
|
||||||
" along with this program; if not, write to the Free Software\n"
|
" with this program; if not, write to the Free Software Foundation, Inc.,\n"
|
||||||
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\n"
|
" 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
* understand the behavior of the core as it uses a target module.
|
* understand the behavior of the core as it uses a target module.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
# include "version.h"
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
# include "priv.h"
|
# include "priv.h"
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
|
|
@ -32,7 +33,8 @@
|
||||||
# include <assert.h>
|
# include <assert.h>
|
||||||
|
|
||||||
static const char*version_string =
|
static const char*version_string =
|
||||||
"Icarus Verilog Stub Target " VERSION "\n"
|
"Icarus Verilog STUB Code Generator " VERSION " (" VERSION_TAG ")\n\n"
|
||||||
|
"Copyright (c) 2000-2008 Stephen Williams (steve@icarus.com)\n\n"
|
||||||
" This program is free software; you can redistribute it and/or modify\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"
|
" 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"
|
" the Free Software Foundation; either version 2 of the License, or\n"
|
||||||
|
|
@ -43,9 +45,9 @@ static const char*version_string =
|
||||||
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
|
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
|
||||||
" GNU General Public License for more details.\n"
|
" GNU General Public License for more details.\n"
|
||||||
"\n"
|
"\n"
|
||||||
" You should have received a copy of the GNU General Public License\n"
|
" You should have received a copy of the GNU General Public License along\n"
|
||||||
" along with this program; if not, write to the Free Software\n"
|
" with this program; if not, write to the Free Software Foundation, Inc.,\n"
|
||||||
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\n"
|
" 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
|
||||||
;
|
;
|
||||||
|
|
||||||
FILE*out;
|
FILE*out;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue