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

  1. LATCHED
  2. Overview
  3. This reserved word defines the output data storage type on devices
  4. that allow latched outputs.  A latched output functions as a
  5. combinatorial output until the data is latched.  Once latched, the
  6. last data present is held regardless of input changes.
  7.  
  8.  
  9. Syntax───────────────────────────────────────────────────────────────
  10.             Pn      Number     Name     Storage
  11.  
  12. ────────────────────────────────────────────────────────────────────
  13.  
  14. Device Support:
  15.  
  16.     PAL10H20EG8     PAL10H20G8      PALCE29M16
  17.     PALCE29MA16     PAL16V8HD       MACH 2
  18. ·
  19. Syntax
  20. You include the optional reserved word in the pin or node statement of
  21. Boolean and state-machine designs.
  22.  
  23. Syntax───────────────────────────────────────────────────────────────
  24.             Pn      Number     Name     Storage
  25. Example──────────────────────────────────────────────────────────────
  26.             PIN     3          OUT1     LATCHED
  27.             NODE    4          OUT2     LAT
  28. ────────────────────────────────────────────────────────────────────
  29. ·
  30. Definitions
  31.  
  32. Storage         The value that defines the pin or node storage type.
  33.                 If you do not specify a storage type, combinatorial is
  34.                 the default.
  35.  
  36.                 ■  Place the reserved word, latched, after the pin or
  37.                    node name in the corresponding statement.
  38.  
  39.                 ■  Use either the complete word, latched, or the three
  40.                    letter abbreviation, lat.
  41. ·
  42. Use
  43.  
  44. There are two ways to enter the storage type.
  45.  
  46. ■    Use the declaration segment form, you select the Storage field,
  47.      display the option list, and select an option.
  48.  
  49. ■    Type the storage value in the appropriate pin or node statement
  50.      in the PDS file using a text editor.
  51.  
  52. The PALCE29M16 and PALCE29MA16 have programmable latches.  The
  53. polarity of the latch can be inverted by placing a slash, /, in front
  54. of the .CLKF functional equation.  The default is active low enable.
  55. The following is an example of an active low enable equation:
  56.  
  57.      PIN 1 EN
  58.      PIN 3 IOPIN
  59.      ...
  60.      /IOPIN.CLKF = EN
  61.  
  62. The following equation provides an active high enable:
  63.  
  64.      IOPIN.CLKF = EN
  65.  
  66. The final polarity of the latch enable as seen from outside the chip
  67. is determined by the following conditions.
  68.  
  69. ■    The polarity of the latch enable as defined in the pin statement
  70.  
  71. ■    The polarity of the .CLKF functional equation
  72.  
  73. ■    The polarity of the latch enable on the right-hand side of the
  74.      .CLKF functional equation
  75.  
  76. The latch enable input controls whether the flip-flop is latched or
  77. not.  On the PAL10H20EG8 and PAL10H20G8 the latch is transparent when
  78. the gate pin is low.  The latch is enabled when the pin is high.
  79. ·
  80. Related Topics
  81. .CLKF
  82. COMBINATORIAL
  83. PIN
  84. REGISTERED
  85. ·
  86.