home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s205 / 1.ddi / BACKUP.001 / DOC_LREF_LR30.DOC < prev    next >
Encoding:
Text File  |  1991-02-28  |  2.1 KB  |  70 lines

  1. .K EQUATION
  2. Overview
  3. This equation defines when to set the K input on K-type flip-flops to
  4. high.
  5.  
  6.  
  7. Syntax───────────────────────────────────────────────────────────────
  8.             Pn.K      Assignment     Expression
  9.                        Operator
  10.  
  11. ────────────────────────────────────────────────────────────────────
  12.  
  13. Device Support: PALCE610.
  14. ·
  15. Syntax
  16. You use the .K equation in the equations segment of Boolean or
  17. state-machine designs.
  18.  
  19. Syntax───────────────────────────────────────────────────────────────
  20.             Pn.K      Assignment     Expression
  21.                        Operator
  22. Example──────────────────────────────────────────────────────────────
  23.             EQUATIONS
  24.             ...
  25.             Q1.K          =          IN1 * /IN2
  26.             ...
  27. ────────────────────────────────────────────────────────────────────
  28.  
  29. ·
  30. Definitions
  31.  
  32. Pn.K            Identifies the pin or node associated with the K-
  33.                 flip-flop.  The name must be defined in an earlier pin
  34.                 or node statement in the declaration segment.
  35.  
  36. Assignment      A symbol that defines a specific operation as
  37. Operator        interpreted by the software when processing design
  38.                 files.
  39.  
  40. Expression      Identifies the logic that defines when the input on
  41.                 .K- type flip-flops is set high.  In the syntax
  42.                 example, when IN1 is true and IN2 is false, the
  43.                 flip-flop associated with the pin or node Q1 is set
  44.                 high.
  45. ·
  46. Use
  47.  
  48. You can place the .K equation anywhere in the equations segment.
  49. Follow the rules below.
  50.  
  51. ■    You cannot have multiple equations for the same pin or node.  If
  52.      you do, the software reports an error during compilation and the
  53.      process is halted.
  54.  
  55. ■    You cannot use negative polarity on the left side of the
  56.      equation.  For example, /Q1.K is not allowed.
  57.  
  58. ■    You can use group, string, and vector notation to define signals.
  59.      This is an excellent way to assign the .K equation to several
  60.      pins.
  61. ·
  62. Related Topics
  63. Boolean Equation
  64. EXPRESSION
  65. GROUP
  66. STRING
  67. VECTOR
  68. ·
  69.