forked from steveicarus/iverilog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for the default_nettype directive.
- Loading branch information
steve
committed
Jun 13, 2004
1 parent
e8e0cd7
commit 9949040
Showing
11 changed files
with
129 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef __Module_H | ||
#define __Module_H | ||
/* | ||
* Copyright (c) 1998-2000 Stephen Williams ([email protected]) | ||
* Copyright (c) 1998-2004 Stephen Williams ([email protected]) | ||
* | ||
* This source code is free software; you can redistribute it | ||
* and/or modify it in source code form under the terms of the GNU | ||
|
@@ -19,7 +19,7 @@ | |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | ||
*/ | ||
#ifdef HAVE_CVS_IDENT | ||
#ident "$Id: Module.h,v 1.36 2004/05/25 19:21:06 steve Exp $" | ||
#ident "$Id: Module.h,v 1.37 2004/06/13 04:56:53 steve Exp $" | ||
#endif | ||
|
||
# include <list> | ||
|
@@ -29,7 +29,7 @@ | |
# include "HName.h" | ||
# include "named.h" | ||
# include "LineInfo.h" | ||
# include <string> | ||
# include "netlist.h" | ||
class PData; | ||
class PEvent; | ||
class PExpr; | ||
|
@@ -67,6 +67,7 @@ class Module : public LineInfo { | |
explicit Module(perm_string name); | ||
~Module(); | ||
|
||
NetNet::Type default_nettype; | ||
|
||
/* The module has parameters that are evaluated when the | ||
module is elaborated. During parsing, I put the parameters | ||
|
@@ -166,6 +167,9 @@ class Module : public LineInfo { | |
|
||
/* | ||
* $Log: Module.h,v $ | ||
* Revision 1.37 2004/06/13 04:56:53 steve | ||
* Add support for the default_nettype directive. | ||
* | ||
* Revision 1.36 2004/05/25 19:21:06 steve | ||
* More identifier lists use perm_strings. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.