Typo writing I pins to AND gates in compare.
This commit is contained in:
parent
e33fb3ce51
commit
12db3340cc
13
t-xnf.cc
13
t-xnf.cc
|
|
@ -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) && !defined(macintosh)
|
#if !defined(WINNT) && !defined(macintosh)
|
||||||
#ident "$Id: t-xnf.cc,v 1.36 2000/11/22 21:18:20 steve Exp $"
|
#ident "$Id: t-xnf.cc,v 1.37 2000/11/29 01:34:17 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* XNF BACKEND
|
/* XNF BACKEND
|
||||||
|
|
@ -227,8 +227,8 @@ bool target_xnf::start_design(const Design*des)
|
||||||
ncf_.open(ncfpath.c_str());
|
ncf_.open(ncfpath.c_str());
|
||||||
|
|
||||||
out_ << "LCANET,6" << endl;
|
out_ << "LCANET,6" << endl;
|
||||||
out_ << "PROG,verilog,0.2PRE,\"Icarus Verilog\"" << endl;
|
out_ << "PROG,verilog,$Name: $,\"Icarus Verilog\"" << endl;
|
||||||
ncf_ << "# Generated by Icarus Verilog 0.2PRE" << endl;
|
ncf_ << "# Generated by Icarus Verilog $Name: $" << endl;
|
||||||
|
|
||||||
if (des->get_flag("part") != "") {
|
if (des->get_flag("part") != "") {
|
||||||
out_ << "PART," << des->get_flag("part") << endl;
|
out_ << "PART," << des->get_flag("part") << endl;
|
||||||
|
|
@ -615,10 +615,10 @@ void target_xnf::lpm_compare_eq_(ostream&os, const NetCompare*dev)
|
||||||
draw_pin(os, "O", dev->pin_AEB());
|
draw_pin(os, "O", dev->pin_AEB());
|
||||||
for (unsigned idx = 0 ; idx < dev->width() ; idx += 5) {
|
for (unsigned idx = 0 ; idx < dev->width() ; idx += 5) {
|
||||||
if ((idx+1) == dev->width())
|
if ((idx+1) == dev->width())
|
||||||
os << " PIN, I" << idx/5 << ", I " << mname
|
os << " PIN, I" << idx/5 << ", I, " << mname
|
||||||
<< "/bit<" << idx << ">" << endl;
|
<< "/bit<" << idx << ">" << endl;
|
||||||
else
|
else
|
||||||
os << " PIN, I" << idx/5 << ", I " << mname
|
os << " PIN, I" << idx/5 << ", I, " << mname
|
||||||
<< "/nbit<" << idx << ">" << endl;
|
<< "/nbit<" << idx << ">" << endl;
|
||||||
}
|
}
|
||||||
os << "END" << endl;
|
os << "END" << endl;
|
||||||
|
|
@ -887,6 +887,9 @@ extern const struct target tgt_xnf = { "xnf", &target_xnf_obj };
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: t-xnf.cc,v $
|
* $Log: t-xnf.cc,v $
|
||||||
|
* Revision 1.37 2000/11/29 01:34:17 steve
|
||||||
|
* Typo writing I pins to AND gates in compare.
|
||||||
|
*
|
||||||
* Revision 1.36 2000/11/22 21:18:20 steve
|
* Revision 1.36 2000/11/22 21:18:20 steve
|
||||||
* Connect the CE if it is linked at all.
|
* Connect the CE if it is linked at all.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue