Guest User

Untitled

a guest
Nov 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module traffic_tb;
  2.  
  3.     reg clock = 0;
  4.  
  5.     initial begin
  6.         $dumpvars;
  7.         #3000 $finish;
  8.     end
  9.  
  10.     always #10 clock=!clock;
  11.    
  12.     wire red_a, green_a, yellow_a, red_b, green_b, yellow_b;
  13.  
  14.     traffic uut (clock, red_a, green_a, yellow_a, red_b, green_b, yellow_b);
  15. endmodule
Add Comment
Please, Sign In to add comment