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

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