Created
May 1, 2020 11:07
-
-
Save rafaelnp/ff58033dbfa09875f2f633e5e6e6501b to your computer and use it in GitHub Desktop.
VHDL Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- get current simulation time | |
report "current simulation time = " & time'image(now); | |
-- storing in a variable | |
variable v_curtime : time := 0 ns; | |
v_curtime := now; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment