96019-01

From
Revision as of 17:44, 15 September 2023 by Jon (talk | contribs) (Created page with "== Found on... == *Tetris Plus 2 == 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; /**...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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;

/** Outputs **/
Pin	12 = o12; /**(Registered, Output feedback registered, Active high) **/
Pin	13 = o13; /**(Registered, Output feedback registered, Active high) **/
Pin	14 = o14; /**(Combinatorial, Output feedback output, Active high) **/
Pin	15 = o15; /**(Registered, Output feedback registered, Active high) **/
Pin	16 = o16; /**(Registered, Output feedback registered, Active high) **/
Pin	17 = o17; /**(Combinatorial, Output feedback output, Active high) **/
Pin	18 = o18; /**(Registered, Output feedback registered, Active high) **/
Pin	19 = o19; /**(Registered, Output feedback registered, Active high) **/

/** Equations **/

o12.d =  i2 & !i3;
o12.oe = OE;

o13.d =  !i2;
o13.oe = OE;

o14 = !i7;

o15.d =  i7;
o15.oe = OE;

o16.d =  i6;
o16.oe = OE;

o17 = ;

o18.d =  !o12;
o18.oe = OE;

o19.d =  !o13;
o19.oe = OE;