Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

the question : find a verilog code for 4 bit up /down counter with testbench by using behavioral modeling with using (parameter .... s0=4'b0000,s1=4'b0001...s15=4'b1111) (use

the question : find a verilog code for 4 bit up /down counter with testbench by using behavioral modeling with using (parameter .... s0=4'b0000,s1=4'b0001...s15=4'b1111)

(use edaplayground).

this is an example but this is for 3 bit counter

image text in transcribed

testbench.sv design.sv SV/Verilog Testbench 1 // Code your testbench here 2 // or browse Examples 3 5 6 module test; 7 8 reg clock, reset; 9 reg [2:0] count; 10 11 counter ci (count, clock, reset); 12 13 initial 14 begin 15 clock - 1'b; 16 repeat (20) 17 #10 clock = clock; 18 end 19 20 initial 21 reset-1; 22 23 24 25 initial 26 Smonitor ($time, "count-%b", count); b 27 28 endmodule module counter Coutput [2: ] count_val, input clock, reset); SV/Verilog Design 3 reg [2: 6] state; 4 5 parameter so = 3'6000, S1 - 3'b001, S2 = 3'b010, S3 = 3'b011, 54 - 3'5100, = S5 - 3'b101, 56 - 3'b110, S7 - 3'bili; 6 7 8 always @ posedge clock, negedge reset) 9 if (reset == ) State

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Internals A Deep Dive Into How Distributed Data Systems Work

Authors: Alex Petrov

1st Edition

1492040347, 978-1492040347

More Books

Students also viewed these Databases questions

Question

What is the objective of project integration management?

Answered: 1 week ago

Question

Define span of management or define span of control ?

Answered: 1 week ago

Question

What is meant by formal organisation ?

Answered: 1 week ago

Question

What is meant by staff authority ?

Answered: 1 week ago

Question

Discuss the various types of policies ?

Answered: 1 week ago

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago