mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Add spice entry for T Flip Flop
This commit is contained in:
parent
e5b6b4df20
commit
aeeb2deef5
@ -18,6 +18,7 @@
|
||||
#include "tff_SR.h"
|
||||
#include "node.h"
|
||||
#include "misc.h"
|
||||
#include "extsimkernels/spicecompat.h"
|
||||
|
||||
tff_SR::tff_SR()
|
||||
{
|
||||
@ -36,7 +37,8 @@ tff_SR::tff_SR()
|
||||
tx = x1 + 4;
|
||||
ty = y2 + 4;
|
||||
Model = "tff_SR";
|
||||
Name = "Y";
|
||||
Name = "Y";
|
||||
SpiceModel = "A";
|
||||
}
|
||||
|
||||
Component * tff_SR::newOne()
|
||||
@ -174,3 +176,22 @@ QString tff_SR::verilogCode( int )
|
||||
" end\n";
|
||||
return l;
|
||||
}
|
||||
|
||||
QString tff_SR::spice_netlist(bool isXyce)
|
||||
{
|
||||
if (isXyce) return QString("");
|
||||
|
||||
QString s = SpiceModel + Name;
|
||||
QString tmp_model = "model_" + Name;
|
||||
QString td = spicecompat::normalize_value(getProperty("Delay")->Value);
|
||||
s += " " + Ports.at(1)->Connection->Name;
|
||||
s += " " + Ports.at(2)->Connection->Name;
|
||||
s += " " + Ports.at(0)->Connection->Name;
|
||||
s += " " + Ports.at(3)->Connection->Name;
|
||||
s += " " + Ports.at(5)->Connection->Name;
|
||||
s += " " + Ports.at(4)->Connection->Name;
|
||||
s += " " + tmp_model + "\n";
|
||||
s += QString(".model %1 d_dff(clk_delay=%2 set_delay=%2 reset_delay=%2 rise_delay=%2 fall_delay=%2)\n")
|
||||
.arg(tmp_model).arg(td);
|
||||
return s;
|
||||
}
|
||||
|
@ -24,6 +24,7 @@ class tff_SR : public Component
|
||||
void createSymbol();
|
||||
QString vhdlCode(int);
|
||||
QString verilogCode(int);
|
||||
QString spice_netlist(bool isXyce);
|
||||
};
|
||||
|
||||
#endif /* tff_SR_H */
|
||||
|
@ -450,7 +450,6 @@ void Module::registerModules (void) {
|
||||
REGISTER_DIGITAL_1 (RS_FlipFlop);
|
||||
REGISTER_DIGITAL_1 (D_FlipFlop);
|
||||
REGISTER_DIGITAL_1 (JK_FlipFlop);
|
||||
REGISTER_DIGITAL_1 (tff_SR);
|
||||
REGISTER_DIGITAL_1 (gatedDlatch);
|
||||
REGISTER_DIGITAL_1 (logic_0);
|
||||
REGISTER_DIGITAL_1 (logic_1);
|
||||
@ -482,6 +481,7 @@ void Module::registerModules (void) {
|
||||
REGISTER_DIGITAL_1 (Logical_XNOR);
|
||||
REGISTER_DIGITAL_1 (dff_SR);
|
||||
REGISTER_DIGITAL_1 (jkff_SR);
|
||||
REGISTER_DIGITAL_1 (tff_SR);
|
||||
}
|
||||
|
||||
// file components
|
||||
|
Loading…
x
Reference in New Issue
Block a user