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

M72 A-4D: Difference between revisions

From PLD Archive
 
Line 1: Line 1:
== Found on... ==
== Found on... ==
*[[Air Duel (M72)]]
*[[Air Duel]]
*[[Battle Chopper (M72)]]
*[[Battle Chopper]]
*[[Dragon Breed (M72)]]
*[[Dragon Breed]]
*[[Gallop (M72)]]
*[[Gallop]]
*[[Hammerin' Harry (M72)]]
*[[Hammerin' Harry]]
*[[Image Fight]]
*[[Image Fight]]
*[[Legend of Hero Tonma (M72)]]
*[[Legend of Hero Tonma]]
*[[Mr Heli (M72)]]
*[[Mr Heli]]
*[[Ninja Spirit (M72)]]
*[[Ninja Spirit]]
*[[Saigo no Nindou (M72)]]
*[[Saigo no Nindou]]
*[[R-Type (M72)]]
*[[R-Type]]
*[[X-Multiply (M72)]]
*[[X-Multiply]]


== Equations ==
== Equations ==

Latest revision as of 17:43, 1 September 2024

Found on...

edit

Equations

edit
/** Inputs **/
Pin	2 = M_IO;
Pin	3 = IOWR;
Pin	4 = IORD;
Pin	5 = A7;
Pin	6 = A6;
Pin	7 = A3;
Pin	8 = A2;
Pin	9 = A1;

/** Outputs **/
Pin	12 = SW; /**(Combinatorial, Output feedback output, Active low) **/
Pin	13 = FLAG; /**(Combinatorial, Output feedback output, Active low) **/
Pin	14 = DSW; /**(Combinatorial, Output feedback output, Active low) **/
Pin	15 = SND; /**(Combinatorial, No output feedback, Active low) **/
Pin	16 = FSET; /**(Combinatorial, No output feedback, Active low) **/
Pin	17 = DMA_ON; /**(Combinatorial, Output feedback output, Active low) **/
Pin	18 = ISET; /**(Combinatorial, Output feedback output, Active low) **/
Pin	19 = INTCS; /**(Combinatorial, Output feedback output, Active low) **/

/** Equations **/

!SW = !IORD & !A7 & !A6 & !A3 & !A2 & !A1;
SW.oe = vcc;

!FLAG = !IORD & !A7 & !A6 & !A3 & !A2 & A1;
FLAG.oe = vcc;

!DSW = !IORD & !A7 & !A6 & !A3 & A2 & !A1;
DSW.oe = vcc;

!SND = !IOWR & !A7 & !A6 & !A3 & !A2 & !A1;
SND.oe = vcc;

!FSET = !IOWR & !A7 & !A6 & !A3 & !A2 & A1;
FSET.oe = vcc;

!DMA_ON = !IOWR & !A7 & !A6 & !A3 & A2 & !A1;
DMA_ON.oe = vcc;

!ISET = !IOWR & !A7 & !A6 & !A3 & A2 & A1;
ISET.oe = vcc;

!INTCS = !M_IO & !A7 & A6;
INTCS.oe = vcc;