Difference between revisions of "007556"

From
Jump to: navigation, search
m (1 revision imported)
Line 2: Line 2:
*[[Boot Camp]]
*[[Boot Camp]]
*[[Combat School]]
*[[Combat School]]
== Equations ==
<pre>
/** Inputs **/
Pin 1 = EQ;
Pin 2 = A15;
Pin 3 = A14;
Pin 4 = A13;
Pin 5 = A12;
Pin 6 = A11;
Pin 7 = A10;
Pin 8 = A9;
Pin 9 = CCNG;
Pin 11 = PCNG;
/** Outputs **/
Pin 12 = o12; /**(Combinatorial, Output feedback output, Active low) **/
Pin 13 = o13; /**(Combinatorial, Output feedback output, Active low) **/
Pin 14 = o14; /**(Combinatorial, Output feedback output, Active low) **/
Pin 15 = o15; /**(Combinatorial, No output feedback, Active low) **/
Pin 16 = WRAMCS; /**(Combinatorial, No output feedback, Active low) **/
Pin 17 = DMP; /**(Combinatorial, Output feedback output, Active low) **/
Pin 18 = BANCS; /**(Combinatorial, Output feedback output, Active low) **/
Pin 19 = PROCS; /**(Combinatorial, Output feedback output, Active low) **/
/** Equations **/
!o12 = !EQ & !A15 & !A14 & !A13 & !A12 & !A11 & A10 & !A9;
!o13 = !EQ & !A15 & !A14 & !A13 & !A12 & !A11 & A10 & A9;
!o14 = !EQ & !A15 & !A14 & A13 & !A12 & A11 & CCNG
    # !EQ & !A15 & !A14 & !A12 & !A11 & !A10 & !A9 & CCNG
    # !EQ & !A15 & !A14 & A13 & A12 & CCNG
    # !EQ & !A15 & !A14 & A13 & !A11 & CCNG;
!o15 = !EQ & !A15 & !A14 & A13 & !A12 & A11 & !CCNG
    # !EQ & !A15 & !A14 & !A12 & !A11 & !A10 & !A9 & !CCNG
    # !EQ & !A15 & !A14 & A13 & A12 & !CCNG
    # !EQ & !A15 & !A14 & A13 & !A11 & !CCNG;
!WRAMCS = !EQ & !A15 & !A14 & !A13 & !A12 & A11
    # !EQ & !A15 & !A14 & !A13 & A12;
!DMP = !EQ & !A15 & !A14 & !A13 & !A12 & !A11 & !A10 & A9;
!BANCS = !EQ & !A15 & A14 & PCNG;
!PROCS = !EQ & !A15 & A14 & !PCNG
    # !EQ & A15;
</pre>

Revision as of 09:29, 2 May 2021

Found on...

Equations

/** Inputs **/
Pin	1 = EQ;
Pin	2 = A15;
Pin	3 = A14;
Pin	4 = A13;
Pin	5 = A12;
Pin	6 = A11;
Pin	7 = A10;
Pin	8 = A9;
Pin	9 = CCNG;
Pin	11 = PCNG;

/** Outputs **/
Pin	12 = o12; /**(Combinatorial, Output feedback output, Active low) **/
Pin	13 = o13; /**(Combinatorial, Output feedback output, Active low) **/
Pin	14 = o14; /**(Combinatorial, Output feedback output, Active low) **/
Pin	15 = o15; /**(Combinatorial, No output feedback, Active low) **/
Pin	16 = WRAMCS; /**(Combinatorial, No output feedback, Active low) **/
Pin	17 = DMP; /**(Combinatorial, Output feedback output, Active low) **/
Pin	18 = BANCS; /**(Combinatorial, Output feedback output, Active low) **/
Pin	19 = PROCS; /**(Combinatorial, Output feedback output, Active low) **/

/** Equations **/

!o12 = !EQ & !A15 & !A14 & !A13 & !A12 & !A11 & A10 & !A9;

!o13 = !EQ & !A15 & !A14 & !A13 & !A12 & !A11 & A10 & A9;

!o14 = !EQ & !A15 & !A14 & A13 & !A12 & A11 & CCNG
     # !EQ & !A15 & !A14 & !A12 & !A11 & !A10 & !A9 & CCNG
     # !EQ & !A15 & !A14 & A13 & A12 & CCNG
     # !EQ & !A15 & !A14 & A13 & !A11 & CCNG;

!o15 = !EQ & !A15 & !A14 & A13 & !A12 & A11 & !CCNG
     # !EQ & !A15 & !A14 & !A12 & !A11 & !A10 & !A9 & !CCNG
     # !EQ & !A15 & !A14 & A13 & A12 & !CCNG
     # !EQ & !A15 & !A14 & A13 & !A11 & !CCNG;

!WRAMCS = !EQ & !A15 & !A14 & !A13 & !A12 & A11
     # !EQ & !A15 & !A14 & !A13 & A12;

!DMP = !EQ & !A15 & !A14 & !A13 & !A12 & !A11 & !A10 & A9;

!BANCS = !EQ & !A15 & A14 & PCNG;

!PROCS = !EQ & !A15 & A14 & !PCNG
     # !EQ & A15;