Verilog testbench timing diagram

  • Thread starter freezer
  • Start date
  • Tags
    Diagram
In summary, the conversation discusses the development of a 7400 series and flashing an FPGA based on a schematic for a lab. After going through the analysis process, a simplified state table was produced, which was then followed by the 7400 series and the verilog code. The conversation also mentions a test bench that was built to test through the state table, and suggests a more efficient way to do so. It is also noted that the incorrect input combination was the reason for the two lines marked with an asterisk not producing the desired output.
  • #1
freezer
76
0

Homework Statement



As part of a lab, we developed a 7400 series and flashed an fpga based on a schematic.

After going through the analysis process, the present state, next state, and a simplified state table was produced.

J = (YB')'
K = (BX)'
T = (A'X)'

J(t+1) = (YB')'A' + (BX)A
T(t+1) = (A'X)'B' + (A'X)B

Semplified State Table
PS | XY= 00 01 10 11
AB | AB AB AB AB
---------------------------
00 | 11 01 10 00
01 | 10 10 11 11
10 | 01 01 01 01
11 | 00 00 10 10


The 7400 series followed through the state table. After getting the verilog working, it to followed the state table. Here is the verilog module:

Code:
module lab3_mod(A_out, Ab_out, B_out, Bb_out, x_in, y_in, reset, clk);
  input x_in, y_in, reset, clk;
  output reg A_out, B_out;
  output Ab_out, Bb_out;
  
  wire J_in, K_in, T_in;
  
 
 
    assign J_in = ~(y_in & ~B_out);
    assign K_in = ~(x_in & B_out);
    assign T_in = ~(~A_out & x_in);
   
  always @ (posedge clk or negedge reset)
  if(~reset)
    begin
      A_out <= 1'b0;
      B_out <= 1'b0;
    end
  else
    begin
      case({J_in, K_in})    
        2'b00 : A_out <= A_out;
        2'b01 : A_out <= 1'b0;
        2'b10 : A_out <= 1'b1;
        2'b11 : A_out <= ~A_out;
      endcase
      case(T_in)
         
        1'b0 : B_out <=  B_out;
        1'b1 : B_out <= ~B_out;

      endcase
 
   end
    assign Ab_out = ~A_out;
    assign Bb_out = ~B_out; 
    
endmodule

We were pressed for time and did not fully develop a test bench during lab. Afterwords, I went back and tried to walk through the state table in the test bench. Here is the test bench:

Code:
`timescale 1ns/1ns
module lab3_mod_testbench();
    reg x_in, y_in, reset, clk;
    wire A_out, Ab_out, B_out, Bb_out;
   
  lab3_mod I1(A_out, Ab_out, B_out, Bb_out, x_in, y_in, reset, clk);
  
  initial
    begin
           clk   = 1'b0;
           reset = 1'b0;     // initialized ff to reset state
      #15  reset = 1'b1;     //returns reset to low after circuit initialized  
      
      //After reset PS = 00
/*
       Semplified State Table  
PS  |  XY=  00  01  10  11
AB  |       AB  AB  AB  AB
---------------------------
00  |       11  01  10  00
01  |       10  10  11  11
10  |       01  01  01  01
11  |       00  00  10  10

*/
      #20 {x_in, y_in} = 2'b00; //00>11
      #20 {x_in, y_in} = 2'b00; //11>00
      
      #20 {x_in, y_in} = 2'b00; //00>11
      #20 {x_in, y_in} = 2'b01; //11>00
      #20 {x_in, y_in} = 2'b01; //00>01
      
      #20 {x_in, y_in} = 2'b01; //01>10
      #20 {x_in, y_in} = 2'b01; //10>01
      
      #20 {x_in, y_in} = 2'b00; //01>10
      #20 {x_in, y_in} = 2'b00; //10>01
      #20 {x_in, y_in} = 2'b00; //01>10*
      #20 {x_in, y_in} = 2'b10; //10>01
      #20 {x_in, y_in} = 2'b00; //01>10
      #20 {x_in, y_in} = 2'b11; //10>01
      
      #20 {x_in, y_in} = 2'b10; //01>11
      #20 {x_in, y_in} = 2'b10; //11>10
      #20 {x_in, y_in} = 2'b10; //10>01
      #20 {x_in, y_in} = 2'b11; //01>11
      #20 {x_in, y_in} = 2'b11; //11>10
      
      #20 {x_in, y_in} = 2'b00; //10>01
      #20 {x_in, y_in} = 2'b10; //01>11
      #20 {x_in, y_in} = 2'b00; //11>00
      #20 {x_in, y_in} = 2'b11; //00>00
      #20 {x_in, y_in} = 2'b10; //00>10
      #20 {x_in, y_in} = 2'b00; //10>01
      #20 {x_in, y_in} = 2'b00; //01>10
   
    end
  always #10 clk = ~clk;
endmodule

Initially, all the #20 were #10. I was thinking i did not maintain the xy inputs long enough to get a proper output. That was not the case. Things were tracking along until the line with the * in the comments.

First, is there an easier way test through a state table? Is there a more efficient way to building a test bench to test through the state table?
 
Physics news on Phys.org
  • #2
Second, why wont the two lines marked with an * in the comments produce the desired output?Homework Equations N/AThe Attempt at a SolutionFirst, is there an easier way test through a state table? Is there a more efficient way to building a test bench to test through the state table?Yes, there are easier and more efficient ways to build a testbench to test through a state table. One way is to use a for loop and iterate through each possible input combination. This will save time as you don't have to manually enter each of the inputs for each step in the state table. Second, why wont the two lines marked with an * in the comments produce the desired output?The two lines marked with an asterisk in the comments won't produce the desired output because the input combinations are incorrect. The input combination should be 2'b01 instead of 2'b00. With the correct input combination, the output should be 10 instead of 01.
 

1. What is a Verilog testbench timing diagram?

A Verilog testbench timing diagram is a visual representation of the timing of signals in a Verilog testbench. It shows the input and output signals over time, allowing for easy debugging and verification of the functionality of a Verilog code.

2. How do I create a Verilog testbench timing diagram?

To create a Verilog testbench timing diagram, you will need to use a waveform viewer tool, such as GTKWave or ModelSim. These tools allow you to simulate your Verilog code and generate a timing diagram based on the input and output signals in your code.

3. What is the importance of a Verilog testbench timing diagram?

A Verilog testbench timing diagram is important because it allows you to visualize the timing of signals in your Verilog code. This can help you identify any errors or issues in your code and make necessary improvements to ensure the correct functionality of your design.

4. Can a Verilog testbench timing diagram be used for debugging?

Yes, a Verilog testbench timing diagram is a useful tool for debugging. By analyzing the timing of signals in your code, you can identify any discrepancies or errors and make necessary adjustments to improve the functionality of your design.

5. Are there any online resources or tutorials for understanding Verilog testbench timing diagrams?

Yes, there are many online resources and tutorials available to help you understand Verilog testbench timing diagrams. Some popular websites include Verilog Tutorial, Verilog HDL Quick Reference Guide, and Verilog Pro. Additionally, many universities and colleges offer courses on Verilog and related topics that cover testbench timing diagrams in detail.

Similar threads

  • Nuclear Engineering
Replies
7
Views
551
  • Engineering and Comp Sci Homework Help
Replies
1
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
20K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
3K
  • Electrical Engineering
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
9
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
0
Views
1K
  • Beyond the Standard Models
Replies
28
Views
4K
Back
Top