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-3D: Difference between revisions

From PLD Archive
boon>Porchio
No edit summary
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Found on... ==
== Found on... ==
*[[R-Type (M72)]]
*[[Air Duel]]
*[[Battle Chopper]]
*[[Dragon Breed]]
*[[Gallop]]
*[[Hammerin' Harry]]
*[[Image Fight]]
*[[Legend of Hero Tonma]]
*[[Mr Heli]]
*[[Ninja Spirit]]
*[[Saigo no Nindou]]
*[[R-Type]]
*[[X-Multiply]]


== Equations ==
== Equations ==
Line 55: Line 66:


</pre>
</pre>
[[Category:Irem PLD's]]

Latest revision as of 17:43, 1 September 2024

Found on...

edit

Equations

edit
/** Inputs **/
Pin	1 = A19;
Pin	2 = A18;
Pin	3 = A17;
Pin	4 = A16;
Pin	5 = A15;
Pin	6 = A14;
Pin	7 = M_IO;
Pin	8 = DBEN;
Pin	9 = TNSL;
Pin	11 = BRQ;

/** Outputs **/
Pin	12 = BUFDBEN; /**(Combinatorial, No output feedback, Active low) **/
Pin	13 = BUFCS; /**(Combinatorial, Output feedback output, Active high) **/
Pin	14 = OBJ_P; /**(Combinatorial, Output feedback output, Active low) **/
Pin	15 = CHARA_P; /**(Combinatorial, Output feedback output, Active low) **/
Pin	17 = CHARA; /**(Combinatorial, Output feedback output, Active low) **/
Pin	18 = SOUND; /**(Combinatorial, Output feedback output, Active low) **/
Pin	19 = SDBEN; /**(Combinatorial, No output feedback, Active low) **/

/** Equations **/

!BUFDBEN = A19 & A18 & !A17 & !A16 & !A15 & !A14 & M_IO & !DBEN & TNSL;
BUFDBEN.oe = vcc;

BUFCS = !A19 & TNSL
    # !A18 & TNSL
    # A17 & TNSL
    # A16 & TNSL
    # A15 & TNSL
    # A14 & TNSL
    # !M_IO & TNSL;
BUFCS.oe = vcc;

!OBJ_P = A19 & A18 & !A17 & !A16 & A15 & !A14 & M_IO;
OBJ_P.oe = vcc;

!CHARA_P = A19 & A18 & !A17 & !A16 & A15 & A14 & M_IO;
CHARA_P.oe = vcc;

!CHARA = A19 & A18 & !A17 & A16 & M_IO;
CHARA.oe = vcc;

!SOUND = A19 & A18 & A17 & !A16 & M_IO;
SOUND.oe = vcc;

!SDBEN = A19 & A18 & A17 & !A16 & M_IO & !DBEN & !BRQ;
SDBEN.oe = vcc;