Write a verilog code for 4-bit Synchronous MOD-N counter with Asynchrounous reset, verify the functionality using Test bench and Synthesize the design and compare the synthesis report. Counters are ...
master_jk mjk1(q[0],qbar[0],1,1,clk,clr); master_jk mjk2(q[1],qbar[1],1,1,q[0],clr); master_jk mjk3(q[2],qbar[2],1,1,q[1],clr); master_jk mjk4(q[3],qbar[3],1,1,q[2],clr); ...