2000-09-17 23:26:15 +02:00
|
|
|
/*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
|
|
|
|
#ident "$Id: net_modulo.cc,v 1.5 2002/08/12 01:34:59 steve Exp $"
|
2000-09-17 23:26:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
|
|
|
|
|
2000-09-17 23:26:15 +02:00
|
|
|
# include <typeinfo>
|
|
|
|
|
# include <iostream>
|
|
|
|
|
# include <iomanip>
|
|
|
|
|
# include <cassert>
|
|
|
|
|
|
|
|
|
|
# include "netlist.h"
|
|
|
|
|
|
|
|
|
|
|
2001-10-28 02:14:53 +01:00
|
|
|
NetModulo::NetModulo(NetScope*s, const string&n, unsigned wr,
|
2000-09-17 23:26:15 +02:00
|
|
|
unsigned wa, unsigned wb)
|
2001-10-28 02:14:53 +01:00
|
|
|
: NetNode(s, n, wr+wa+wb), width_r_(wr), width_a_(wa), width_b_(wb)
|
2000-09-17 23:26:15 +02:00
|
|
|
{
|
|
|
|
|
unsigned p = 0;
|
|
|
|
|
for (unsigned idx = 0 ; idx < width_r_ ; idx += 1, p += 1) {
|
|
|
|
|
pin(p).set_dir(Link::OUTPUT);
|
|
|
|
|
pin(p).set_name("Result", idx);
|
|
|
|
|
}
|
|
|
|
|
for (unsigned idx = 0 ; idx < width_a_ ; idx += 1, p += 1) {
|
|
|
|
|
pin(p).set_dir(Link::INPUT);
|
|
|
|
|
pin(p).set_name("DataA", idx);
|
|
|
|
|
}
|
|
|
|
|
for (unsigned idx = 0 ; idx < width_b_ ; idx += 1, p += 1) {
|
|
|
|
|
pin(p).set_dir(Link::INPUT);
|
|
|
|
|
pin(p).set_name("DataB", idx);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetModulo::~NetModulo()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned NetModulo::width_r() const
|
|
|
|
|
{
|
|
|
|
|
return width_r_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned NetModulo::width_a() const
|
|
|
|
|
{
|
|
|
|
|
return width_a_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned NetModulo::width_b() const
|
|
|
|
|
{
|
|
|
|
|
return width_b_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Link& NetModulo::pin_Result(unsigned idx)
|
|
|
|
|
{
|
|
|
|
|
assert(idx < width_r_);
|
|
|
|
|
return pin(idx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Link& NetModulo::pin_Result(unsigned idx) const
|
|
|
|
|
{
|
|
|
|
|
assert(idx < width_r_);
|
|
|
|
|
return pin(idx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Link& NetModulo::pin_DataA(unsigned idx)
|
|
|
|
|
{
|
|
|
|
|
assert(idx < width_a_);
|
|
|
|
|
return pin(idx+width_r_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Link& NetModulo::pin_DataA(unsigned idx) const
|
|
|
|
|
{
|
|
|
|
|
assert(idx < width_a_);
|
|
|
|
|
return pin(idx+width_r_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Link& NetModulo::pin_DataB(unsigned idx)
|
|
|
|
|
{
|
|
|
|
|
assert(idx < width_b_);
|
|
|
|
|
return pin(idx+width_r_+width_a_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const Link& NetModulo::pin_DataB(unsigned idx) const
|
|
|
|
|
{
|
|
|
|
|
assert(idx < width_b_);
|
|
|
|
|
return pin(idx+width_r_+width_a_);
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-12 01:47:04 +02:00
|
|
|
/*
|
|
|
|
|
* $Log: net_modulo.cc,v $
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.5 2002/08/12 01:34:59 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-08-12 01:47:04 +02:00
|
|
|
* Revision 1.4 2002/08/11 23:47:04 steve
|
|
|
|
|
* Add missing Log and Ident strings.
|
|
|
|
|
*
|
|
|
|
|
*/
|