null target ignore assignment nodes.
This commit is contained in:
parent
d513cf8f60
commit
35e84f15d4
|
|
@ -17,7 +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
|
||||||
*/
|
*/
|
||||||
#if !defined(WINNT)
|
#if !defined(WINNT)
|
||||||
#ident "$Id: t-null.cc,v 1.7 1999/09/30 21:27:29 steve Exp $"
|
#ident "$Id: t-null.cc,v 1.8 1999/10/05 03:26:37 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "netlist.h"
|
# include "netlist.h"
|
||||||
|
|
@ -33,6 +33,8 @@ static class target_null_t : public target_t {
|
||||||
void bufz(ostream&os, const NetBUFZ*) { }
|
void bufz(ostream&os, const NetBUFZ*) { }
|
||||||
void memory(ostream&, const NetMemory*) { }
|
void memory(ostream&, const NetMemory*) { }
|
||||||
void task_def(ostream&, const NetTaskDef*) { }
|
void task_def(ostream&, const NetTaskDef*) { }
|
||||||
|
void net_assign(ostream&os, const NetAssign*) { }
|
||||||
|
void net_assign_nb(ostream&os, const NetAssignNB*) { }
|
||||||
void net_esignal(ostream&, const NetESignal*) { }
|
void net_esignal(ostream&, const NetESignal*) { }
|
||||||
void net_event(ostream&, const NetNEvent*) { }
|
void net_event(ostream&, const NetNEvent*) { }
|
||||||
bool proc_block(ostream&, const NetBlock*) { return true; }
|
bool proc_block(ostream&, const NetBlock*) { return true; }
|
||||||
|
|
@ -49,6 +51,9 @@ static class target_null_t : public target_t {
|
||||||
extern const struct target tgt_null = { "null", &target_null_obj };
|
extern const struct target tgt_null = { "null", &target_null_obj };
|
||||||
/*
|
/*
|
||||||
* $Log: t-null.cc,v $
|
* $Log: t-null.cc,v $
|
||||||
|
* Revision 1.8 1999/10/05 03:26:37 steve
|
||||||
|
* null target ignore assignment nodes.
|
||||||
|
*
|
||||||
* Revision 1.7 1999/09/30 21:27:29 steve
|
* Revision 1.7 1999/09/30 21:27:29 steve
|
||||||
* Ignore user task definitions.
|
* Ignore user task definitions.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue