Difference between revisions of "B82-15"

From
Jump to: navigation, search
m (1 revision imported)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Found on ==
== Found on ==
*[[Final Blow]]
*[[Final Blow]]
== 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 16 = i16;
/** Outputs **/
Pin 15 = o15; /**(Combinatorial, Output feedback output, Active high) **/
Pin 17 = o17; /**(Combinatorial, Output feedback output, Active low) **/
Pin 18 = o18; /**(Registered, Output feedback registered, Active high) **/
Pin 19 = o19; /**(Combinatorial, Output feedback output, Active high) **/
/** Equations **/
o15 = !i9 & i12;
!o17 = i13
    # i2
    # i3;
o18.d =  !i7 & i8;
o18.oe = OE;
o19 = i4
    # i5
    # i6;
</pre>
[[Category:Taito PLD's]]

Latest revision as of 12:42, 7 January 2024

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	16 = i16;

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

/** Equations **/

o15 = !i9 & i12;

!o17 = i13
     # i2
     # i3;

o18.d =  !i7 & i8;
o18.oe = OE;

o19 = i4
    # i5
    # i6;