Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- `timescale 1ns/1ps
- module buttontoled_tb(input reg i_sw, output reg o_led);
- buttontoled UUT (.i_sw(ai_sw), .o_led(o_led));
- always@*// i would asume this is always statment is
- begin
- i_sw = ~i_sw;
- #10;
- end
- endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement