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

315-5141: Difference between revisions

From PLD Archive
boon>Porchio
Created page with "== Found on.. == *Fantasy Zone (SEGA System 16A)"
 
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Found on.. ==
== Found on.. ==
*[[Fantasy Zone (SEGA System 16A)]]
*[[Action Fighter]]
*[[Dump Matsumoto]]
*[[Fantasy Zone]]
*[[Quartet]]
*[[Wonder Boy III - Monster Lair]]
 
== 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 14 = i14;
Pin 15 = i15;
Pin 16 = i16;
Pin 17 = i17;
Pin 18 = i18;
 
/** Outputs **/
Pin 9 = o9; /**(Combinatorial, Output feedback output, Active low) **/
Pin 11 = o11; /**(Combinatorial, Output feedback output, Active low) **/
Pin 12 = o12; /**(Combinatorial, Output feedback output, Active low) **/
Pin 13 = o13; /**(Combinatorial, Output feedback output, Active low) **/
Pin 19 = o19; /**(Combinatorial, Output feedback output, Active low) **/
 
/** Equations **/
 
!o9 = !i6 & o11;
 
!o11 = i1 & i2 & i3 & i4 & i5 & !i6;
 
!o12 = !i7 & i8 & !i14 & !i15;
 
!o13 = !i7 & i8 & !i14 & i15;
 
!o19 = !i7 & i8 & i14 & i15;
</pre>
 
[[Category:SEGA PLD's]]

Latest revision as of 17:25, 1 September 2024

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	14 = i14;
Pin	15 = i15;
Pin	16 = i16;
Pin	17 = i17;
Pin	18 = i18;

/** Outputs **/
Pin	9 = o9; /**(Combinatorial, Output feedback output, Active low) **/
Pin	11 = o11; /**(Combinatorial, Output feedback output, Active low) **/
Pin	12 = o12; /**(Combinatorial, Output feedback output, Active low) **/
Pin	13 = o13; /**(Combinatorial, Output feedback output, Active low) **/
Pin	19 = o19; /**(Combinatorial, Output feedback output, Active low) **/

/** Equations **/

!o9 = !i6 & o11;

!o11 = i1 & i2 & i3 & i4 & i5 & !i6;

!o12 = !i7 & i8 & !i14 & !i15;

!o13 = !i7 & i8 & !i14 & i15;

!o19 = !i7 & i8 & i14 & i15;