2000-10-09 00:36:55 +02:00
|
|
|
#ifndef __globals_H
|
|
|
|
|
#define __globals_H
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2000 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
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
|
|
|
|
#if !defined(WINNT) && !defined(macintosh)
|
2001-10-21 01:02:39 +02:00
|
|
|
#ident "$Id: globals.h,v 1.5 2001/10/20 23:02:40 steve Exp $"
|
2000-10-09 00:36:55 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include <stddef.h>
|
|
|
|
|
|
|
|
|
|
/* This is the base (i.e. -B<value>) of the Icarus Verilog files. */
|
|
|
|
|
extern const char*base;
|
|
|
|
|
|
2000-10-28 05:45:47 +02:00
|
|
|
/* This is a list of all the -f<key>=<value> options from the
|
|
|
|
|
command line, concatenated together. */
|
|
|
|
|
extern char*f_list;
|
|
|
|
|
|
|
|
|
|
extern char*mod_list;
|
|
|
|
|
|
2000-10-09 00:36:55 +02:00
|
|
|
/* This is the optional -Tmin|typ|max setting. */
|
|
|
|
|
extern const char*mtm;
|
|
|
|
|
|
|
|
|
|
/* Ths is the optional -N<path> value, if one was supplied. */
|
|
|
|
|
extern const char*npath;
|
|
|
|
|
|
2000-10-28 05:45:47 +02:00
|
|
|
/* This is the name of the output file that the user selected. */
|
|
|
|
|
extern const char*opath;
|
|
|
|
|
|
2000-10-09 00:36:55 +02:00
|
|
|
/* This pointer is set if there was a -s<value> parameter. */
|
|
|
|
|
extern const char*start;
|
|
|
|
|
|
2000-11-09 22:58:00 +01:00
|
|
|
/* This flag is true if the -S flag was used on the command line. */
|
|
|
|
|
extern int synth_flag;
|
|
|
|
|
|
2000-10-09 00:36:55 +02:00
|
|
|
/* This is the name of the selected target. */
|
|
|
|
|
extern const char*targ;
|
|
|
|
|
|
2001-07-03 06:09:24 +02:00
|
|
|
/* -v */
|
|
|
|
|
extern int verbose_flag;
|
|
|
|
|
|
2000-10-28 05:45:47 +02:00
|
|
|
extern char warning_flags[];
|
|
|
|
|
|
2001-10-21 01:02:39 +02:00
|
|
|
/* -y flags from the command line. */
|
|
|
|
|
extern char* library_flags;
|
|
|
|
|
|
2000-10-09 00:36:55 +02:00
|
|
|
extern const char*lookup_pattern(const char*key);
|
|
|
|
|
|
|
|
|
|
extern int build_string(char*out, size_t olen, const char*pattern);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: globals.h,v $
|
2001-10-21 01:02:39 +02:00
|
|
|
* Revision 1.5 2001/10/20 23:02:40 steve
|
|
|
|
|
* Add automatic module libraries.
|
|
|
|
|
*
|
2001-07-03 06:09:24 +02:00
|
|
|
* Revision 1.4 2001/07/03 04:09:25 steve
|
|
|
|
|
* Generate verbuse status messages (Stephan Boettcher)
|
|
|
|
|
*
|
2000-11-09 22:58:00 +01:00
|
|
|
* Revision 1.3 2000/11/09 21:58:00 steve
|
|
|
|
|
* Remember to include the -S condition.
|
|
|
|
|
*
|
2000-10-28 05:45:47 +02:00
|
|
|
* Revision 1.2 2000/10/28 03:45:47 steve
|
|
|
|
|
* Use the conf file to generate the vvm ivl string.
|
|
|
|
|
*
|
2000-10-09 00:36:55 +02:00
|
|
|
* Revision 1.1 2000/10/08 22:36:56 steve
|
|
|
|
|
* iverilog with an iverilog.conf configuration file.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#endif
|