...
Ishaan
Posted on 23 Jan 2023

Structural Modeling In Verilog

After switch level modeling, Structural modeling is the lowest level of abstraction in verilog. It is also called gate level modeling because we only describe a hardware in logic gates and their inteconnections.

Keywords Required

  • and()
  • or()
  • not()
  • nand()
  • nor()
  • xor()
  • xnor()
  • wire

In above keywords of logic gates, inside the parentheses we are required to list input and output connections. In all of the above logic gate keywords, first list will be output and rest will be inputs. For example and(y,a,b); instantiate a AND gate with output y and inputs a,b.

Using wire keyword, you can make internal connections between the logic gates. To make internal connections, we are required to declare the internal wire name. For exmaple wire x; will declare a wire which has name x.

Describe a hardware using these keyowrds

Let us describe a 2X1 MUX using structural modeling. Write the boolean expression and make a logic circuit diagram.

Boolean Expression

$$Y = \bar S I_0 + S I_1$$

Circuit Diagram

2X1 MUX circuit diagram

Let's describe 2X1 MUX in Verilog

First, create a module and define input output ports. Make logic gates by instantiating respective logic gate keyword. There is two AND gate, one OR gate and one NOT gate.

Declare internal connection using wire keyword.

Now make connection between logic gates and input output ports.

After making connections, synthesize the design and you'll see the output diagram of your described hardware.

Learn Verilog HDL

Click like if you found this useful

Add Comment

* Required information
1000

Comments

No comments yet. Be the first!