Created
July 12, 2020 07:55
-
-
Save ciniml/8ab708426fecdb7368bef7741f786f89 to your computer and use it in GitHub Desktop.
ieee_1800_2017_example_4_initial
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
module multiple; | |
logic a; | |
initial a = 1; | |
// The assigned value of the variable is determinate | |
initial begin | |
a <= #4 0; // schedules a = 0 at time 4 | |
a <= #4 1; // schedules a = 1 at time 4 | |
end // At time 4, a = 1 | |
endmodule |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment