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

IOC1: Difference between revisions

From PLD Archive
Line 1: Line 1:
== Found on... ==
== Found on... ==
*[[Captain Commando (CPS1)]]
*[[Captain Commando]]
*[[Dynasty Wars (CPS1)]]
*[[Dynasty Wars]]
*[[Ken Sei Mogura (CPS1)]]
*[[Ken Sei Mogura]]
*[[King of Dragons]]
*[[King of Dragons]]
*[[Knights of the Round (CPS1)]]
*[[Knights of the Round]]
*[[Nemo]]
*[[Nemo]]
*[[Quiz and Dragons (CPS1)]]
*[[Quiz and Dragons]]


== Equations ==
== Equations ==

Revision as of 18:36, 1 September 2024

Found on...

Equations

/** 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	17 = i17;
Pin	18 = i18;

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

/** Equations **/

!o12 = !o16
     # !i2;

!o13 = i1 & i2;

!o14 = o13 & o16;

!o15 = i1 & !i2;

!o16 = o14 & o15;

!o19 = !o16
     # !i3;