Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- `timescale 1ns/1ps
- module buttontoled_tb;
- input wire i_sw ;
- output wire o_led;
- buttontoled uut(
- .i_sw=(i_sw),
- .o_led(o_led)
- );
- i_sw = 1;
- #10
- i_sw =0;
- endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement