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

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