~arcachofo/simulide/1.1.0

« back to all changes in this revision

Viewing changes to src/simulator/elements/logic/e-flipflopjk.cpp

  • Committer: arcachofo
  • Date: 2021-01-01 14:23:42 UTC
  • Revision ID: arcachofo@simulide.com-20210101142342-ozfljnll44g5lbl3
Initial Commit 0.5.15-RC3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2016 by santiago González                               *
 
3
 *   santigoro@gmail.com                                                   *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 3 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, see <http://www.gnu.org/licenses/>.  *
 
17
 *                                                                         *
 
18
 ***************************************************************************/
 
19
 
 
20
#include <QDebug>
 
21
 
 
22
#include "e-flipflopjk.h"
 
23
#include "simulator.h"
 
24
#include "circuit.h"
 
25
 
 
26
eFlipFlopJK::eFlipFlopJK( QString id )
 
27
           : eLogicDevice( id )
 
28
{
 
29
}
 
30
eFlipFlopJK::~eFlipFlopJK() {}
 
31
 
 
32
void eFlipFlopJK::stamp()
 
33
{
 
34
    eNode* enode = m_input[2]->getEpin()->getEnode();         // Set pin
 
35
    if( enode ) enode->voltChangedCallback( this );
 
36
    
 
37
    enode = m_input[3]->getEpin()->getEnode();              // Reset pin
 
38
    if( enode ) enode->voltChangedCallback( this );
 
39
 
 
40
    if( m_etrigger != Trig_Clk )
 
41
    {
 
42
        for( uint i=0; i<2; i++ )
 
43
        {
 
44
            eNode* enode = m_input[i]->getEpin()->getEnode();
 
45
            if( enode ) enode->voltChangedCallback( this );
 
46
        }
 
47
    }
 
48
    
 
49
    eLogicDevice::stamp();
 
50
}
 
51
 
 
52
void eFlipFlopJK::voltChanged()
 
53
{
 
54
    // Get Clk to don't miss any clock changes
 
55
    bool clkAllow = (eLogicDevice::getClockState() == Clock_Allow);
 
56
 
 
57
    //qDebug() << "eFlipFlopJK::voltChanged()"<<clkRising;
 
58
 
 
59
    if( eLogicDevice::getInputState( 2 )==true )          // Master Set
 
60
    {
 
61
        m_Q0 = true;         // Q
 
62
        m_Q1 = false;        // Q'
 
63
        //qDebug() << "eFlipFlopJK::voltChanged() set";
 
64
    }
 
65
    else if( eLogicDevice::getInputState( 3 )==true )   // Master Reset
 
66
    {
 
67
        m_Q0 = false;         // Q
 
68
        m_Q1 = true;          // Q'
 
69
        //qDebug() << "eFlipFlopJK::voltChanged() Reset";
 
70
    }
 
71
    else if( clkAllow )                              // Allow operation
 
72
    {
 
73
        bool J = eLogicDevice::getInputState( 0 );
 
74
        bool K = eLogicDevice::getInputState( 1 );
 
75
        bool Q = m_output[0]->out();
 
76
        
 
77
        bool state = (J && !Q) || (!K && Q) ;
 
78
        //qDebug() << "eFlipFlopJK::voltChanged() clk"<<J<<K<<state;
 
79
 
 
80
        m_Q0 = state ;       // Q
 
81
        m_Q1 = !state;       // Q'
 
82
    }
 
83
    Simulator::self()->addEvent( m_propDelay, this );
 
84
}
 
85
 
 
86
void eFlipFlopJK::runEvent()
 
87
{
 
88
    setOut( 0, m_Q0 );      // Q
 
89
    setOut( 1, m_Q1 );      // Q'
 
90
}
 
91
 
 
92
void eFlipFlopJK::setSrInv( bool inv )
 
93
{
 
94
    m_srInv = inv;
 
95
    m_input[2]->setInverted( inv );                           // Set
 
96
    m_input[3]->setInverted( inv );                           // Reset
 
97
    
 
98
    Circuit::self()->update();
 
99
}