home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s078 / 1.img / IODECODE.PLD < prev    next >
Encoding:
CUPL PLD Program format  |  1991-12-08  |  1.8 KB  |  52 lines

  1. Name        Iodecode;
  2. Partno        CA0010;
  3. Revision    02;
  4. Date        9/22/84;
  5. Designer    Osann/Kahl;
  6. Company        Assisted Technology, Inc.;
  7. Assembly    PC Multi-Function;
  8. Location    U12;
  9.  
  10. /************************************************************************/
  11. /* This device generates the chip select signals for the I/O functions. */
  12. /* It also enables the data bus transceiver for both memory and I/O    */
  13. /* write cycles.                            */
  14. /************************************************************************/
  15. /* Allowable Target Device Types:    PAL12L6   82S153        */
  16. /************************************************************************/
  17.  
  18. /** Inputs **/
  19.  
  20. pin [1..8] = [a9..2] ;            /* system addresses a2 - a9    */
  21. pin 9       = !memw ;            /* memory write strobe        */
  22. pin 11       = !iow ;            /* i/o write strobe        */
  23. pin 12       = !ioacc_in ;        /* same signal as ioacc     */
  24. pin 19       = !memacc ;            /* on-board memory access    */
  25.  
  26. /** Outputs **/
  27.  
  28. pin 13       = !ioacc ;            /* on-board I/O being accessed    */
  29. pin 14       = !parport ;         /* parallel port chip select    */
  30. pin 15       = !rtclk ;            /* real-time clock chip select    */
  31. pin 16       = !serport2 ;        /* serial port #2 chip select    */
  32. pin 17       = !serport1 ;        /* serial port #1 chip select    */
  33. pin 18       = !wrbuff ;            /* xceiver enable - write cycle */
  34.  
  35. /** Declarations and Intermediate Variable Definitions    **/
  36.  
  37. field    ioaddr      = [a9..2] ;
  38. serport1_eqn      = ioaddr:[2F8..2FF] ;  /*******************************/
  39. serport2_eqn      = ioaddr:[3F8..3FF] ;  /*         I/O Address    */
  40. rtclk_eqn      = ioaddr:[100..11F] ;  /*        Ranges        */
  41. parport_eqn      = ioaddr:[1F4..1F7] ;  /*******************************/
  42.  
  43. /** Logic Equations **/
  44.  
  45. wrbuff          = memacc & memw # ioacc_in & iow ;
  46. ioacc          = serport1_eqn # serport2_eqn # rtclk_eqn #
  47.             parport_eqn ;
  48. serport1      = serport1_eqn ;
  49. serport2      = serport2_eqn ;
  50. rtclk          = rtclk_eqn ;
  51. parport       = parport_eqn ;
  52.