mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
114 lines
3.9 KiB
C++
114 lines
3.9 KiB
C++
/***************************************************************************
|
|
rs_flipflop.cpp
|
|
-----------------
|
|
begin : Fri Jan 06 2006
|
|
copyright : (C) 2006 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it 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. *
|
|
* *
|
|
***************************************************************************/
|
|
#include "rs_flipflop.h"
|
|
#include "node.h"
|
|
#include "misc.h"
|
|
|
|
RS_FlipFlop::RS_FlipFlop()
|
|
{
|
|
Type = isDigitalComponent;
|
|
Description = QObject::tr("RS flip flop");
|
|
|
|
Props.append(new Property("t", "0", false, QObject::tr("delay time")));
|
|
|
|
Rects.append(new qucs::Rect(-20, -20, 40, 40, QPen(Qt::darkBlue,2, Qt::SolidLine, Qt::SquareCap, Qt::MiterJoin)));
|
|
|
|
Lines.append(new qucs::Line(-30,-10,-20,-10,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line(-30, 10,-20, 10,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 30,-10, 20,-10,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 30, 10, 20, 10,QPen(Qt::darkBlue,2)));
|
|
|
|
Texts.append(new Text(-18,-18, "R", Qt::darkBlue, 12.0));
|
|
Texts.append(new Text(-18, 2, "S", Qt::darkBlue, 12.0));
|
|
Texts.append(new Text( 6,-18, "Q", Qt::darkBlue, 12.0));
|
|
Texts.append(new Text( 6, 2, "Q", Qt::darkBlue, 12.0));
|
|
Texts.last()->over=true;
|
|
|
|
Ports.append(new Port(-30,-10)); // R
|
|
Ports.append(new Port(-30, 10)); // S
|
|
Ports.append(new Port( 30,-10)); // Q
|
|
Ports.append(new Port( 30, 10)); // nQ
|
|
|
|
x1 = -30; y1 = -24;
|
|
x2 = 30; y2 = 24;
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
Model = "RSFF";
|
|
Name = "Y";
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
QString RS_FlipFlop::vhdlCode(int NumPorts)
|
|
{
|
|
QString s = "";
|
|
if(NumPorts <= 0) { // no truth table simulation ?
|
|
QString td = Props.at(0)->Value; // delay time
|
|
if(!misc::VHDL_Delay(td, Name)) return td; // time has not VHDL format
|
|
s = td;
|
|
}
|
|
s += ";\n";
|
|
|
|
s = " " +
|
|
Ports.at(2)->Connection->Name + " <= " +
|
|
Ports.at(0)->Connection->Name + " nor " +
|
|
Ports.at(3)->Connection->Name + s + " " +
|
|
Ports.at(3)->Connection->Name + " <= " +
|
|
Ports.at(1)->Connection->Name + " nor " +
|
|
Ports.at(2)->Connection->Name + s + '\n';
|
|
return s;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
QString RS_FlipFlop::verilogCode(int NumPorts)
|
|
{
|
|
QString t = "";
|
|
if(NumPorts <= 0) { // no truth table simulation ?
|
|
QString td = Props.at(0)->Value; // delay time
|
|
if(!misc::Verilog_Delay(td, Name)) return td; // time has not VHDL format
|
|
t = td;
|
|
}
|
|
t += " ";
|
|
|
|
QString l = "";
|
|
|
|
QString s = Ports.at(1)->Connection->Name;
|
|
QString r = Ports.at(0)->Connection->Name;
|
|
QString q = Ports.at(2)->Connection->Name;
|
|
QString b = Ports.at(3)->Connection->Name;
|
|
|
|
l = "\n // " + Name + " RS-flipflop\n" +
|
|
" assign" + t + q + " = ~(" + r + " | " + b + ");\n" +
|
|
" assign" + t + b + " = ~(" + s + " | " + q + ");\n\n";
|
|
return l;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
Component* RS_FlipFlop::newOne()
|
|
{
|
|
return new RS_FlipFlop();
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
Element* RS_FlipFlop::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("RS-FlipFlop");
|
|
BitmapFile = (char *) "rsflipflop";
|
|
|
|
if(getNewOne) return new RS_FlipFlop();
|
|
return 0;
|
|
}
|