Skip to content

Instantly share code, notes, and snippets.

@tanakamura
Created May 13, 2016 13:02
Show Gist options
  • Save tanakamura/0316d72ce5b6ebeea041b8081d616876 to your computer and use it in GitHub Desktop.
Save tanakamura/0316d72ce5b6ebeea041b8081d616876 to your computer and use it in GitHub Desktop.
module top(led_0,
sw_0);
(* IOSTANDARD="LVCMOS33"*) (* PACKAGE_PIN = "T22"*) output led_0;
(* IOSTANDARD="LVCMOS25"*) (* PACKAGE_PIN = "F22"*) input sw_0;
assign led_0 = sw_0;
endmodule
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment