Difference between revisions of "C2VA3"

From
Jump to: navigation, search
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
*[[Marvel Vs Capcom (CPS2, Black All-in-one)]]
*[[Marvel Vs Capcom (CPS2, Black All-in-one)]]
*[[Street Fighter 2 Anniversary (CPS2, Black all-in-one)]]
*[[Street Fighter 2 Anniversary (CPS2, Black all-in-one)]]
[[Category:CAPCOM PLD's]]
== Equations ==
<pre>
/** Inputs **/
Pin 1 = i1;
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 11 = i11;
/** Outputs **/
Pin 12 = o12; /**(Combinatorial, Output feedback output, Active high) **/
Pin 13 = o13; /**(Combinatorial, Output feedback output, Active high) **/
Pin 14 = o14; /**(Combinatorial, Output feedback output, Active high) **/
Pin 15 = o15; /**(Combinatorial, No output feedback, Active low) **/
Pin 16 = o16; /**(Combinatorial, No output feedback, Active high) **/
Pin 17 = o17; /**(Combinatorial, Output feedback output, Active high) **/
Pin 18 = o18; /**(Combinatorial, Output feedback output, Active high) **/
Pin 19 = o19; /**(Combinatorial, Output feedback output, Active low) **/
/** Equations **/
o12 = i5;
o13 = i5;
o14 = i4 & i7;
!o15 = i4 & i7;
o16 = i2;
o17 = i2;
o18 = i1 & i7;
!o19 = i1 & i7;
</pre>

Latest revision as of 15:20, 27 October 2023

Found on...[edit]

Equations[edit]

/** Inputs **/
Pin	1 = i1;
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	11 = i11;

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

/** Equations **/

o12 = i5;

o13 = i5;

o14 = i4 & i7;

!o15 = i4 & i7;

o16 = i2;

o17 = i2;

o18 = i1 & i7;

!o19 = i1 & i7;