Advertisement
grzemot

testbench

Mar 17th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module test9999;
  2.      reg clk;
  3.     wire [7:0] q;
  4.    
  5.     johnson_cnt bla(clk,q);
  6.     initial
  7.         clk =1'b0;
  8.        
  9.     always
  10.         #10 clk = ~clk;
  11.        
  12. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement