Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

136089-1009: Difference between revisions

From
(Created page with "== Found on... == *Road Riot == Notes == *136089-1009 matches 136094-0008A from Moto Frenzy Category:Atari PLD's")
 
 
Line 1: Line 1:
== Found on... ==
== Found on... ==
*[[Road Riot]]
*[[Road Riot]]
== 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;
Pin 14 = i14;
Pin 15 = i15;
Pin 16 = i16;
/** Outputs **/
Pin 12 = o12; /**(Combinatorial, No output feedback, Active high) **/
Pin 13 = o13; /**(Combinatorial, Output feedback output, Active high) **/
Pin 17 = o17; /**(Combinatorial, Output feedback output, Active high) **/
Pin 18 = o18; /**(Combinatorial, Output feedback output, Active high) **/
Pin 19 = o19; /**(Combinatorial, No output feedback, Active high) **/
/** Equations **/
o12 = !i2 & !i3 & i4 & !i5 & i11
    # !i3 & i4 & i7 & i11
    # !i11 & i15;
o13 = i2 & !i3 & i4 & i11
    # !i3 & i4 & i5 & i11
    # !i11 & i16;
o17 = !i2 & !i3 & i4 & !i5 & i9 & i11
    # i2 & !i3 & i4 & i6 & i11
    # !i3 & i4 & i5 & i6 & i11
    # !i11 & i14;
o18 = i2 & i11
    # i5 & i11
    # i3 & i11
    # !i4 & i11;
o19 = !i3 & i4 & i11;
</pre>


== Notes ==
== Notes ==

Latest revision as of 18:13, 30 December 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;
Pin	14 = i14;
Pin	15 = i15;
Pin	16 = i16;

/** Outputs **/
Pin	12 = o12; /**(Combinatorial, No output feedback, Active high) **/
Pin	13 = o13; /**(Combinatorial, Output feedback output, Active high) **/
Pin	17 = o17; /**(Combinatorial, Output feedback output, Active high) **/
Pin	18 = o18; /**(Combinatorial, Output feedback output, Active high) **/
Pin	19 = o19; /**(Combinatorial, No output feedback, Active high) **/

/** Equations **/

o12 = !i2 & !i3 & i4 & !i5 & i11
    # !i3 & i4 & i7 & i11
    # !i11 & i15;

o13 = i2 & !i3 & i4 & i11
    # !i3 & i4 & i5 & i11
    # !i11 & i16;

o17 = !i2 & !i3 & i4 & !i5 & i9 & i11
    # i2 & !i3 & i4 & i6 & i11
    # !i3 & i4 & i5 & i6 & i11
    # !i11 & i14;

o18 = i2 & i11
    # i5 & i11
    # i3 & i11
    # !i4 & i11;

o19 = !i3 & i4 & i11;

Notes[edit]