home *** CD-ROM | disk | FTP | other *** search
CUPL PLD Program format | 1991-12-08 | 1.8 KB | 52 lines |
- Name Iodecode;
- Partno CA0010;
- Revision 02;
- Date 9/22/84;
- Designer Osann/Kahl;
- Company Assisted Technology, Inc.;
- Assembly PC Multi-Function;
- Location U12;
-
- /************************************************************************/
- /* This device generates the chip select signals for the I/O functions. */
- /* It also enables the data bus transceiver for both memory and I/O */
- /* write cycles. */
- /************************************************************************/
- /* Allowable Target Device Types: PAL12L6 82S153 */
- /************************************************************************/
-
- /** Inputs **/
-
- pin [1..8] = [a9..2] ; /* system addresses a2 - a9 */
- pin 9 = !memw ; /* memory write strobe */
- pin 11 = !iow ; /* i/o write strobe */
- pin 12 = !ioacc_in ; /* same signal as ioacc */
- pin 19 = !memacc ; /* on-board memory access */
-
- /** Outputs **/
-
- pin 13 = !ioacc ; /* on-board I/O being accessed */
- pin 14 = !parport ; /* parallel port chip select */
- pin 15 = !rtclk ; /* real-time clock chip select */
- pin 16 = !serport2 ; /* serial port #2 chip select */
- pin 17 = !serport1 ; /* serial port #1 chip select */
- pin 18 = !wrbuff ; /* xceiver enable - write cycle */
-
- /** Declarations and Intermediate Variable Definitions **/
-
- field ioaddr = [a9..2] ;
- serport1_eqn = ioaddr:[2F8..2FF] ; /*******************************/
- serport2_eqn = ioaddr:[3F8..3FF] ; /* I/O Address */
- rtclk_eqn = ioaddr:[100..11F] ; /* Ranges */
- parport_eqn = ioaddr:[1F4..1F7] ; /*******************************/
-
- /** Logic Equations **/
-
- wrbuff = memacc & memw # ioacc_in & iow ;
- ioacc = serport1_eqn # serport2_eqn # rtclk_eqn #
- parport_eqn ;
- serport1 = serport1_eqn ;
- serport2 = serport2_eqn ;
- rtclk = rtclk_eqn ;
- parport = parport_eqn ;
-