Last active
November 24, 2020 22:39
-
-
Save brettfazio/fdcd48efddfe07825ff2a88eca4e66f2 to your computer and use it in GitHub Desktop.
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 basicSequential; | |
| integer a, b, c; | |
| initial | |
| begin | |
| $display("Hello!"); | |
| a = 5; | |
| b = 4; | |
| c = a + b; | |
| c = 4; | |
| $display("c = %d", c); | |
| end | |
| endmodule |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment