mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
2007-03-25 Stefan Jahn <stefan@lkcc.org>
* component.cpp (verilogHDL_Code): New virtual function which is used to produce Verilog HDL code. * d_flipflop.cpp (verilogHDL_Code): Added the first Verilog HDL code. Provided by Ozgur.
This commit is contained in:
parent
9463bba1ce
commit
e5b6be4fb2
@ -1,3 +1,11 @@
|
||||
2007-03-25 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* component.cpp (verilogHDL_Code): New virtual function which
|
||||
is used to produce Verilog HDL code.
|
||||
|
||||
* d_flipflop.cpp (verilogHDL_Code): Added the first Verilog HDL
|
||||
code. Provided by Ozgur.
|
||||
|
||||
2007-03-06 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* twistedpair.cpp (TwistedPair): Added some new properties
|
||||
|
@ -622,6 +622,12 @@ QString Component::getNetlist()
|
||||
return s;
|
||||
}
|
||||
|
||||
// -------------------------------------------------------
|
||||
QString Component::verilogHDL_Code(int)
|
||||
{
|
||||
return QString(""); // no digital model
|
||||
}
|
||||
|
||||
// -------------------------------------------------------
|
||||
QString Component::vhdlCode(int)
|
||||
{
|
||||
|
@ -79,6 +79,7 @@ public:
|
||||
protected:
|
||||
virtual QString netlist();
|
||||
virtual QString vhdlCode(int);
|
||||
virtual QString verilogHDL_Code(int);
|
||||
|
||||
int analyseLine(const QString&, int);
|
||||
bool getIntegers(const QString&, int *i1=0, int *i2=0, int *i3=0,
|
||||
|
@ -76,6 +76,36 @@ QString D_FlipFlop::vhdlCode(int NumPorts)
|
||||
return s;
|
||||
}
|
||||
|
||||
// -------------------------------------------------------
|
||||
QString D_FlipFlop::verilogHDL_Code(int NumPorts)
|
||||
{
|
||||
QString s = ";\n";
|
||||
QString d = " #0" + s;
|
||||
if(NumPorts <= 0) // no truth table simulation ?
|
||||
if(strtod(Props.getFirst()->Value.latin1(), 0) != 0.0) // delay time
|
||||
d = " #" + Props.getFirst()->Value + s;
|
||||
|
||||
s = "module " + Name + "(" +
|
||||
Ports.at(2)->Connection->Name + ", " +
|
||||
Ports.at(0)->Connection->Name + ", " +
|
||||
Ports.at(1)->Connection->Name + ", " +
|
||||
Ports.at(3)->Connection->Name + ")" + s + " input " +
|
||||
Ports.at(0)->Connection->Name + ", " +
|
||||
Ports.at(1)->Connection->Name + ", " +
|
||||
Ports.at(3)->Connection->Name + s + " output reg " +
|
||||
Ports.at(2)->Connection->Name + s + " always @(" +
|
||||
Ports.at(0)->Connection->Name + " or " +
|
||||
Ports.at(1)->Connection->Name + " or " +
|
||||
Ports.at(3)->Connection->Name + ") begin\n" + d + " if (" +
|
||||
Ports.at(3)->Connection->Name + ") " +
|
||||
Ports.at(2)->Connection->Name + " <= 0" + s + " if (~" +
|
||||
Ports.at(3)->Connection->Name + " && " +
|
||||
Ports.at(1)->Connection->Name + ") " +
|
||||
Ports.at(2)->Connection->Name + " <= " +
|
||||
Ports.at(0)->Connection->Name + s + " end\nendmodule\n";
|
||||
return s;
|
||||
}
|
||||
|
||||
// -------------------------------------------------------
|
||||
Component* D_FlipFlop::newOne()
|
||||
{
|
||||
|
@ -30,6 +30,7 @@ public:
|
||||
|
||||
protected:
|
||||
QString vhdlCode(int);
|
||||
QString verilogHDL_Code(int);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user