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

  1. EQUATIONS SEGMENT
  2. Overview
  3. This segment of the PDS file contains the Boolean equations you create
  4. to produce the desired device behavior.
  5.  
  6.  
  7. Syntax───────────────────────────────────────────────────────────────
  8.  
  9.             ;--------------Boolean Equations Segment-----------
  10.             EQUATIONS
  11.             Boolean equations
  12.  
  13. ─────────────────────────────────────────────────────────────────────
  14.  
  15. Device Support: All PLD devices.
  16. ·
  17. Syntax
  18. You use the keyword, EQUATIONS, at the beginning of the equations
  19. segment in Boolean-based designs.
  20.  
  21. Syntax───────────────────────────────────────────────────────────────
  22.  
  23.             ;--------------Boolean Equations Segment-----------
  24.             EQUATIONS
  25.             Boolean equations
  26.  
  27. Example──────────────────────────────────────────────────────────────
  28.  
  29.             EQUATIONS                       ;Equations Segment
  30.             QA = Q2 * /Q1 * /Q0
  31.                  + Q3 * Q2
  32.                  + Q3 * Q1
  33.                  + Q3 * Q0
  34. ─────────────────────────────────────────────────────────────────────
  35. ·
  36. Definitions
  37.  
  38. Equations       You use this keyword to define the beginning of the
  39.                 equations segment in a PDS file.
  40.  
  41. Boolean         Assign equations that include an output pin or node
  42. Equations       name, an assignment operator, and an expression.
  43.                 Equations can be standard Boolean, Case, or
  44.                 IF-THEN-ELSE constructs.
  45. ·
  46. Use
  47. The keyword EQUATIONS is required when Boolean equations follow.
  48.  
  49. Note: PALASM software does allow both Boolean equations and
  50.       state-machine descriptions in the same design file.
  51. ·
  52. Related Topics
  53. Boolean Equation
  54. EXPRESSION
  55. ·
  56.