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

D77-15: Difference between revisions

From PLD Archive
 
Line 1: Line 1:
== Found on... ==
== Found on... ==
*[[Land Maker (Taito F3)]]
*[[Land Maker]]
*[[Pop'n Pop (Taito F3)]]
*[[Pop'n Pop]]
*[[Puchi Carat (Taito F3)]]
*[[Puchi Carat]]
*[[Puzzle Bobble 4 (Taito F3)]]
*[[Puzzle Bobble 4]]


== Equations ==
== Equations ==

Latest revision as of 21:28, 9 November 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	13 = i13;
Pin	14 = i14;
Pin	15 = i15;
Pin	16 = i16;

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

/** Equations **/

o12 = i13;

!o17 = !i6 & !i7 & !i8 & i15 & !i16
     # !i6 & !i7 & !i8 & !i15 & i16;

o18 = i3;

o19 = i4;