FPGA Learning Series: 6. Combinational Logic and Sequential Logic
design background:
Verilog HDL language is divided into two kinds of general-oriented and simulation-oriented statements, and synthesizable sentences are far less than the simulation statements, the reader may have a relatively simple feeling of comprehensive design. However, the fact is just the opposite. This is because: First of all, the synthesizable design is used to build the hardware platform. Therefore, the indicators of the design are very demanding, including resources, frequency and power consumption, which need to be reflected by code; In the actual development, the use of basic Verilog HDL statements to complete a wide range of hardware development, has brought great challenges to designers. All simulation statements exist only for verification of synthesizable designs. In order to provide readers with an in-depth understanding of synthesizable design and flexible use of what has been learned, this chapter will extract the basic knowledge and difficulties in comprehensive design and integrate it into Verilog HDL grammar and development tools. It will explain the design to the reader in a simple and easy way. Difficulties in nature .
Â
Design principle : Â
The design of this time is mainly used to understand the relationship and the writing method of the combination and the sequential logic. By simulating the combination and the sequential logic circuit to simulate the simulation waveform used, the logic characteristics and the corresponding relationship are analyzed.
Â
Design architecture diagram :
Â
Design code :
Combinational logic design module
0 Â Module study ( data_1 , data_2 , data_out ); Â // Port list
1 Â
2 Â Input data_1 , data_2 ; Â Â // Enter
3  Output  Reg data_out ;    // output
4 Â
5 Â // Describe a combinatorial logic circuit
6  Always  @  (*) Â
7 Â Begin
8 Â data_out = data_1 && data_2; Â // and logic
9 Â End
10
11 Â Endmodule Â
Â
Test module
0  `timescale  1ns  /  1ps
1 Â
2 Â Module tb ;
3 Â
4 Â Reg data_1 , data_2 ; Â Â // Define the input register
5 Â Wire data_out ; Â Â Â Â Â Â Â Â // Define the output line type
6 Â
7 Â Study study_dut ( Â Â Â Â Â Â Â // Design module port instantiation
8 Â . Data_1 (data_1), Â
9 Â . Data_2 (data_2),
10. Data_out (data_out)
11 );
12
13 initial  Begin         // Describe changes in data flow
14 data_1 = Â 0 ; data_2 = Â 0 ;
15 # 200
16 data_1 = Â 1 ; data_2 = Â 0 ;
17 # 200
18 data_1 = Â 0 ; data_2 = Â 1 ;
19 # 200
20 data_1 = Â 1 ; data_2 = Â 1 ;
21 # 200
22 data_1 = Â 0 ; data_2 = Â 0 ;
23 # 200
24 $stop ; Â Â Â Â Â Â Â Â //The system task is stopped
25 end
26
27 Â Endmodule Â
Â
Combinational logic simulation diagram :
The change sequence of the input data stream can be clearly seen in the simulation waveform. After the data is flipped, the output immediately changes without delay.
Â
Â
Â
Sequential logic design module
0 Â Module study ( clk , data_1 , data_2 , data_out ); Â // Port list
1 Â
2 Â Input clk , data_1 , data_2 ; Â Â // Enter
3  Output  Reg data_out ; // output
4 Â
5 Â // Describe a combinatorial logic circuit
6  Always  @  ( posedge clk ) Â
7 Â Begin
8 Â data_out <= data_1 && data_2; Â // and logic
9 Â End
10
11 Â Endmodule Â
Â
Test module
0  `timescale  1ns  /  1ps
1 Â
2 Â Module tb ;
3 Â
4 Â Reg clk , data_1 , data_2 ; Â Â // Define the input register
5 Â Wire data_out ; Â Â Â Â Â Â Â Â // Define the output line type
6 Â
7 Â Study study_dut ( Â Â Â Â Â Â Â // Design module port instantiation
8 Â . clk ( clk ) ,
9 Â . Data_1 (data_1), Â
10. Data_2 (data_2),
11. Data_out (data_out)
12 );
13
14 initial  Begin         // Describe changes in data flow
15 clk = Â 1 ; data_1 = Â 0 ; data_2 = Â 0 ;
16 # 200 .1
17 data_1 = Â 1 ; data_2 = Â 0 ;
18 # 200 .1
19 data_1 = Â 0 ; data_2 = Â 1 ;
20 # 200 .1
21 data_1 = Â 1 ; data_2 = Â 1 ;
22 # 200 .1
23 data_1 = Â 0 ; data_2 = Â 0 ;
24 # 200
25 $stop ; Â Â Â Â Â Â Â Â //The system task is stopped
26 end
27
28 always  # 10 clk =  ~ clk ;
29
30 Â Endmodule Â
Â
Timing logic simulation diagram :
Â
  It can be clearly seen in the simulation that, in the sequential logic, we or the integrated register, that is to say the data obtained will have a rising edge in the register, because it is triggered by a rising edge and is seen in the waveform. When both inputs are high, the output should also be high, but it does not immediately change to high, waiting for the next rising edge to go high.
In this way, the difference between the waveforms synthesized by the combination and the sequential logic is clearly visualized, that is, one of the combinations is a linear type and the other is a register.
A TPU Screen Protector made of the super toughness of the honeycomb structure. Its unique ultra-soft properties allow it to cover the most complex curves and contours in a device.
The self-healing design of the Hydrogel Screen Protector can protect the display screen of the device from damage, leave no air bubbles, and maintain the sensitivity of the touch screen. Advanced anti-fingerprint and dust- and oleophobic overlays keep your screen smudge- and dirt-free. This overlay is also important in providing maximum touch sensitivity for improved high-speed glide and optimal touch response.
The optical transparency of the Hydrogel Film is more than 90%, showing you the most original screen color and bringing the most realistic visual experience.
If you want to know more about the product information of the Hydrogel Screen Protector for vivo, please click the product details to view the parameters, model, picture, price and other information of the vivo Screen Protector.
Whether you are a group or an individual, we will do our best to provide you with accurate and comprehensive information about Hydrogel Screen Protectors!
Screen Protector For vivo,Hydrogel Screen Protector For vivo,Hydrogel Film for vivo,TPU Screen Protector For vivo
Shenzhen Jianjiantong Technology Co., Ltd. , https://www.jjtphonesticker.com