URL
https://opencores.org/ocsvn/sdhc-sc-core/sdhc-sc-core/trunk
Subversion Repositories sdhc-sc-core
Compare Revisions
- This comparison shows the changes necessary to convert path
/sdhc-sc-core/trunk/src/grpStrobesClocks/unitTimeoutGenerator
- from Rev 82 to Rev 100
- ↔ Reverse comparison
Rev 82 → Rev 100
/src/TimeoutGenerator-Rtl-a.vhdl
27,8 → 27,12
|
elsif (iClk'event and iClk = cActivated) then |
oTimeout <= cInactivated; -- Default |
|
if (iDisable = cActivated) then |
Enabled <= cInactivated; |
Counter <= (others => '0'); |
|
if (iEnable = cActivated or Enabled = cActivated) then |
elsif (iEnable = cActivated or Enabled = cActivated) then |
Counter <= Counter + 1; |
Enabled <= cActivated; |
|
/src/TimeoutGenerator-e.vhdl
25,6 → 25,7
iClk : in std_ulogic; |
inResetAsync : in std_ulogic; |
iEnable : in std_ulogic; |
iDisable : in std_ulogic; |
oTimeout : out std_ulogic |
); |
|