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

  1. MEALY_MACHINE
  2. Overview
  3. This reserved word identifies the type of state machine you are
  4. designing.
  5.  
  6.  
  7. Syntax───────────────────────────────────────────────────────────────
  8.             MEALY_MACHINE
  9.  
  10. ────────────────────────────────────────────────────────────────────
  11.  
  12. Device Support:  All PLD devices.
  13. ·
  14. Syntax
  15. Include the reserved word in the state segment of state machine
  16. designs.
  17.  
  18. Syntax───────────────────────────────────────────────────────────────
  19.             MEALY_MACHINE
  20. Example──────────────────────────────────────────────────────────────
  21.             STATE              ;State Setup and Defaults
  22.             MEALY_MACHINE
  23. ────────────────────────────────────────────────────────────────────
  24. ·
  25. Definitions
  26.  
  27. MEALY_MACHINE   This is the reserved word that defines a state-machine
  28.                 design as one of the two possible types, either Mealy
  29.                 or Moore.  If you do not define a type in the state
  30.                 segment of the design, the program defaults to Mealy
  31.                 machine.
  32.  
  33.                 A Mealy machine determines its outputs from the
  34.                 present state and inputs.
  35. ·
  36. Use
  37. You can place the reserved word statement anywhere within the STATE
  38. segment.  However, for design clarity, the following guidelines are
  39. advised.
  40.  
  41. ■    Place the reserved word statement at the beginning of the STATE
  42.      segment before the state global defaults.
  43.  
  44. ■    Use the reserved word statement only once in a file.  The
  45.      software ignores redundant state machine definitions.
  46.  
  47. You cannot have both MEALY_MACHINE and MOORE_MACHINE statements in the
  48. same design file.  If you want to include both types of state machines
  49. in the design file, only one can use state machine syntax.  The other
  50. type must be written as Boolean equations.
  51. ·
  52. Related Topics
  53. MOORE_MACHINE
  54. STATE
  55. ·
  56.