Skip to content

Instantly share code, notes, and snippets.

@brettfazio
Last active November 24, 2020 22:39
Show Gist options
  • Select an option

  • Save brettfazio/fdcd48efddfe07825ff2a88eca4e66f2 to your computer and use it in GitHub Desktop.

Select an option

Save brettfazio/fdcd48efddfe07825ff2a88eca4e66f2 to your computer and use it in GitHub Desktop.
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