Changes between Initial Version and Version 1 of MuxVbe


Ignore:
Timestamp:
Apr 7, 2007, 11:23:17 PM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MuxVbe

    v1 v1  
     1{{{
     2-- Registre accumulateur 4 bits
     3
     4ENTITY accu IS
     5PORT (
     6  ck     : IN  BIT;
     7  i      : IN  BIT_VECTOR(3 DOWNTO 0);
     8  q      : OUT BIT_VECTOR(3 DOWNTO 0);
     9  vdd    : IN  BIT;
     10  vss    : IN  BIT);
     11END accu;
     12
     13ARCHITECTURE vbe OF accu IS
     14
     15SIGNAL x : REG_VECTOR(3 DOWNTO 0) REGISTER;
     16
     17BEGIN
     18
     19  q <= x;
     20  label0 : BLOCK(ck='1' AND NOT ck 'STABLE)
     21  BEGIN
     22    x <= GUARDED i;
     23  END BLOCK;
     24
     25END vbe;
     26}}}