Skip to content

Commit

Permalink
Stubs so that cygwin port will link ivl.
Browse files Browse the repository at this point in the history
  • Loading branch information
steve committed Oct 16, 2000
1 parent 90ae464 commit f5fae7f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .cvsignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ syn-rules.cc
syn-rules.cc.output
lexor.cc
ivl
ivl.exp
dep
configure
Makefile
verilog
gverilog
iverilog
config.status
config.log
config.cache
2 changes: 1 addition & 1 deletion ivl.def
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ivl_process_stmt
ivl_statement_type

ivl_stmt_block_count
ivl_stmt_blocl_stmt
ivl_stmt_block_stmt
ivl_stmt_cond_expr
ivl_stmt_cond_false
ivl_stmt_cond_true
Expand Down
11 changes: 10 additions & 1 deletion t-dll-api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: t-dll-api.cc,v 1.12 2000/10/15 04:46:23 steve Exp $"
#ident "$Id: t-dll-api.cc,v 1.13 2000/10/16 22:44:54 steve Exp $"
#endif

# include "t-dll.h"
Expand Down Expand Up @@ -146,6 +146,12 @@ extern "C" ivl_expr_t ivl_expr_oper2(ivl_expr_t net)
return 0;
}

extern "C" ivl_expr_t ivl_expr_oper3(ivl_expr_t net)
{
assert(net);
return 0;
}

extern "C" int ivl_expr_signed(ivl_expr_t net)
{
assert(net);
Expand Down Expand Up @@ -416,6 +422,9 @@ extern "C" ivl_statement_t ivl_stmt_sub_stmt(ivl_statement_t net)

/*
* $Log: t-dll-api.cc,v $
* Revision 1.13 2000/10/16 22:44:54 steve
* Stubs so that cygwin port will link ivl.
*
* Revision 1.12 2000/10/15 04:46:23 steve
* Scopes and processes are accessible randomly from
* the design, and signals and logic are accessible
Expand Down

0 comments on commit f5fae7f

Please sign in to comment.