home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 September / pcwk_09_96.iso / demo / elmark / cupl / demo1 / gates.so < prev   
Text File  |  1989-02-10  |  3KB  |  62 lines

  1. CSIM: CUPL Simulation Program
  2. Version 3.00 Serial# x-xxxxx-xxx
  3. Copyright (C)  1983,1988 Logical Devices, Inc.
  4. CREATED Tue Jan 10 10:08:38 1989
  5.  
  6. LISTING FOR SIMULATION FILE: gates.si
  7.  
  8.    1: Name            Gates;
  9.    2: Partno          CA0001;
  10.    3: Revision        03;
  11.    4: Date            9/12/83;
  12.    5: Designer        S. Baird;
  13.    6: Company         Logical Devices, Inc.;
  14.    7: Location        None;
  15.    8: Assembly        None;
  16.    9:
  17.   10: /****************************************************************/
  18.   11: /*                                                              */
  19.   12: /*      This is a example to demonstrate how CUPL               */
  20.   13: /*      compiles simple gates.                                  */
  21.   14: /*                                                              */
  22.   15: /****************************************************************/
  23.   16: /*   Target Devices:  P16L8, P16LD8, P16P8, EP300, and 82S153   */
  24.   17: /****************************************************************/
  25.   18:
  26.   19:
  27.   20: /*
  28.   21:  * Order:  define order, polarity, and output
  29.   22:  * spacing of stimulus and response values
  30.   23:  */
  31.   24:
  32.   25: Order:  a, %2, b, %4, inva, %3, invb, %5, and, %8,
  33.   26:         nand, %7, or, %8, nor, %7, xor, %8, xnor;
  34.   27:
  35.   28: /*
  36.   29:  * Vectors:  define stimulus and response values, with header
  37.   30:  *           and intermediate messages for the simulator listing.
  38.   31:  *
  39.   32:  * Note: Don't Care state (X) on inputs is reflected in outputs
  40.   33:  *       where appropriate.
  41.   34:  */
  42.   35:
  43.  
  44. ===========================================================================
  45.                             Simulation Results
  46. ===========================================================================
  47.  
  48.                           Simple Gates Simulation
  49.  
  50.             inverters  and      nand     or      nor     xor      xnor
  51.       a  b   !a  !b   a & b  !(a & b)  a # b  !(a # b)  a $ b  !(a $ b)
  52.       -  -   --  --   -----  --------  -----  --------  -----  --------
  53. 0001: 0  0    H   H     L        H       L        H       L        H
  54. 0002: 0  1    H   L     L        H       H        L       H        L
  55. 0003: 1  0    L   H     L        H       H        L       H        L
  56. 0004: 1  1    L   L     H        L       H        L       L        H
  57. 0005: 1  X    L   X     X        X       H        L       X        X
  58. 0006: X  1    X   L     X        X       H        L       X        X
  59. 0007: 0  X    H   X     L        H       X        X       X        X
  60. 0008: X  0    X   H     L        H       X        X       X        X
  61. 0009: X  X    X   X     X        X       X        X       X        X
  62.