Last active
February 3, 2016 01:25
-
-
Save stylesuxx/b90892deb67587cfa0c5 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 top (input btn1, output led1); | |
initial begin | |
led1 = 0; | |
end | |
always @(posedge btn1) begin | |
led1 = !led1; | |
end | |
endmodule |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment