Difference between revisions of "E07-09"

From
Jump to: navigation, search
boon>Porchio
(Created page with "==Found on...== *Dangerous Curves")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
==Found on...==
==Found on...==
*[[Dangerous Curves]]
*[[Dangerous Curves]]
== Equations ==
<pre>
/** Inputs **/
Pin 2 = i2;
Pin 3 = i3;
Pin 4 = i4;
Pin 5 = i5;
Pin 6 = i6;
Pin 7 = i7;
Pin 8 = i8;
Pin 9 = i9;
Pin 12 = i12;
Pin 13 = i13;
Pin 14 = i14;
Pin 15 = i15;
/** Outputs **/
Pin 16 = o16; /**(Combinatorial, Output feedback output, Active high) **/
Pin 17 = o17; /**(Registered, Output feedback registered, Active low) **/
Pin 18 = o18; /**(Combinatorial, Output feedback output, Active high) **/
Pin 19 = o19; /**(Combinatorial, Output feedback output, Active high) **/
/** Equations **/
o16 = i4 & i5;
!o17.d =  !i2 & i12;
o17.oe = OE;
o18 = i6 & !i7 & !o19
    # !i6 & i7 & !o16 & !o19;
o19 = !i8 & !i9 & !i13 & !i14;
</pre>

Latest revision as of 16:17, 20 August 2022

Found on...[edit]

Equations[edit]

/** Inputs **/
Pin	2 = i2;
Pin	3 = i3;
Pin	4 = i4;
Pin	5 = i5;
Pin	6 = i6;
Pin	7 = i7;
Pin	8 = i8;
Pin	9 = i9;
Pin	12 = i12;
Pin	13 = i13;
Pin	14 = i14;
Pin	15 = i15;

/** Outputs **/
Pin	16 = o16; /**(Combinatorial, Output feedback output, Active high) **/
Pin	17 = o17; /**(Registered, Output feedback registered, Active low) **/
Pin	18 = o18; /**(Combinatorial, Output feedback output, Active high) **/
Pin	19 = o19; /**(Combinatorial, Output feedback output, Active high) **/

/** Equations **/

o16 = i4 & i5;

!o17.d =  !i2 & i12;
o17.oe = OE;

o18 = i6 & !i7 & !o19
    # !i6 & i7 & !o16 & !o19;

o19 = !i8 & !i9 & !i13 & !i14;