mirror of
https://github.com/V2RetroComputing/analog.git
synced 2024-11-26 06:49:16 +00:00
56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
Name PicoPal;
|
|
Partno U5;
|
|
Date 27/11/22;
|
|
Revision 01;
|
|
Designer David Kuder;
|
|
Company Grizzly Adams;
|
|
Assembly None;
|
|
Location None;
|
|
Device g16V8;
|
|
|
|
/****************************************************************/
|
|
/* */
|
|
/* Apple II Pi Pico Address Logic */
|
|
/* */
|
|
/****************************************************************/
|
|
/* Allowable Target Device Types : PAL16V8 */
|
|
/****************************************************************/
|
|
|
|
/** Inputs **/
|
|
|
|
PIN 1 = CLOCK; /* Unused Register Clock */
|
|
PIN 2 = !RESET; /* System Reset */
|
|
PIN [3..6] = [BSEL3..0]; /* Buffer Mode Select */
|
|
|
|
PIN 7 = !DEVSELECT; /* $C0nX Selected -> 16B I/O */
|
|
PIN 8 = !IOSELECT; /* $CnXX Selected -> Base ROM */
|
|
PIN 9 = !IOSTROBE; /* $C8XX Selected -> Extd ROM */
|
|
PIN 11 = A2;
|
|
PIN 13 = A1;
|
|
PIN 14 = A0;
|
|
|
|
/** Outputs **/
|
|
|
|
PIN 12 = !CARDSELECT; /* Card Select */
|
|
|
|
/** Logic Overflow **/
|
|
PIN 15 = EXTOFF; /* Combinatorial */
|
|
PIN 16 = EXTSELECT; /* Combinatorial */
|
|
PIN 17 = EXTENABLE; /* Combinatorial */
|
|
PIN 18 = EXTDISABLE; /* Combinatorial */
|
|
|
|
/** Logic Equations **/
|
|
|
|
/* $CFxx disables, but only triggered during AddrLo */
|
|
EXTOFF = IOSTROBE & [A2..0]:'b'111 & [BSEL3..0]:'b'101X;
|
|
|
|
/* Implement an SR Latch */
|
|
EXTDISABLE = !(EXTENABLE # IOSELECT);
|
|
EXTENABLE = !(EXTDISABLE # RESET # EXTOFF # [BSEL3..0]:'b'0111);
|
|
|
|
/* $C8XX and extended rom is enabled */
|
|
EXTSELECT = EXTENABLE & IOSTROBE;
|
|
|
|
/* Tell the Pico that the Apple wants attention. */
|
|
CARDSELECT = DEVSELECT # IOSELECT # EXTSELECT;
|