verilog-hdl reference: verilog hdl: a guide to digital design and synthesis, palnitkar, samir some...

23
Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu Wu,

Post on 19-Dec-2015

237 views

Category:

Documents


8 download

TRANSCRIPT

Page 1: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Verilog-HDL

Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir

Some of slides in this lecture are supported by Prof. An-Yeu Wu, E.E., NTU.

Page 2: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

OUTLINE

Introduction Basics of the Verilog Language Gate-level modeling Data-flow modeling Behavioral modeling Task and function

Page 3: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Verilog HDL (continue)

• Invented by Philip Moorby in 1983/ 1984 at Gateway Design Automation

• Enables specification of a digital system at a range of levels of abstraction: switches, gates, RTL, and higher

• Initially developed in conjunction with the Verilog simulator

Page 4: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Verilog HDL• Verilog- based synthesis tool introduced by Synops

ys in 1987• Gateway Design Automation bought by Cadence in

1989• Verilog placed in public domain to compete with VH

DL – Open Verilog International (OVI) IEEE 1364 -199

5 and revised version IEEE 1364 -2001 revised version IEEE 1364 -2005

Page 5: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu
Page 6: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

What is Verilog HDL ? Mixed level modeling

Behavioral Algorithmic ( like high level language) Register transfer (Synthesizable)

Structural Gate (AND, OR ……) Switch (PMOS, NOMS, JFET ……)

Single language for design and simulation Built-in primitives and logic functions User-defined primitives Built-in data types High-level programming constructs

Page 7: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Basic Conventions

Verilog is case sensitive

– Keywords are in lowercase Extra white space is ignored

– But whitespace does separate tokens Comments

– One liners are //

– Multiple lines /* */

– Comments may not be nested

Page 8: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

OUTLINE

Introduction Basics of the Verilog Language

Overview of Verilog Module Identifier & Keywords Logic Values Data Types Numbers & Negative Numbers

Gate-level modeling Data-flow modeling Behavioral modeling Task and function

Page 9: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Overview of Verilog Module

Test benchTest bench

Page 10: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Basic unit --Module

module module_name (port_name);port declaration

data type declarationmodule functionality or structure

Endmodule

Page 11: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

D-FlipFlop

module D_FF(q,d,clk,reset);output q; //port declarationinput d,clk,reset; // data type declarationreg q;always @ (posedge reset or negedge clk)if (reset) q=1'b0;else q=d;endmodule

Page 12: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Instance

A module provides a template which you can create actual objects.

When a module is invoked, Verilog creates a unique object from the template

The process of creating a object from module template is called instantiation

The object is called instance

Page 13: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Instancesmodule adder (in1,in2,cin,sum,cout);

.......

endmodule

module adder8(....) ;

adder add1(a,b,1’b0,s1,c1) , add2(.in1(a2),.in2(b2),.cin(c1),.sum(s2)

,.cout(c2)) ;.....endmodule

Mapping port positions

Mapping names

Page 14: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

T-FlipFlop

module T_FF(q,clk,reset);

output q;

input clk,reset;

wire d;

D_FF dff0(q,d,clk,reset); // create an instance

not n1(d,q);

endmodule

Page 15: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Identifier & Keywords

Identifier User-provided names for Verilog objects in the description

s Legal characters are “a-z”, “A-Z”, “0-9”, “_”, and “$” First character has to be a letter or an “_”

Example: Count, _R2D2, FIVE$

Keywords Predefined identifiers to define the language constructs All keywords are defined in lower case Cannot be used as identifiers

Example:initial, assign, module, always….

Page 16: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Hierarchical Modeling Concepts

Top level block

Sub-block 1

Sub-block 1

Sub-block 1

Sub-block 1

Leaf cell

Leaf cell

Leaf cell

Leaf cell

Leaf cell

Leaf cell

Leaf cell

Leaf cell

Page 17: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Hierarchical Modeling Concepts

Module ripple_carry_counter(q,clk, reset); Output [3:0] q; Input clk, reset; T_FF tff0(q[0], clk, reset); T_FF tff1(q[1], q[0], reset); T_FF tff0(q[2], q[1], reset); T_FF tff0(q[3], q[2], reset); endmpdule

Page 18: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Hierarchical Modeling Concepts

module T_FF(q, clk, reset); output q; input clk, reset; wire d; D_FF dff0(q, d, clk, reset); not na(d, q); endmodule

qd

○clk

。q

Page 19: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Hierarchical Modeling Concepts

module D_FF(q, d, clk, reset); output q; input d, clk, reset; reg q; always @(posedge reset or negedge clk) if (reset) q=1’b0; else q=d; endmodule

Page 20: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

4-bits Ripple Carry Counter

Ripple carry counter

T_FF (tff0)

T_FF (tff1)

T_FF (tff2)

T_FF (tff3)

D_ FF

Inverter

D_ FF

Inverter

D_ FF

Inverter

D_ FF

Inverter

Page 21: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Exercise

module FullAdd4(a, b, carry_in, sum, carry_out); input [3:0] a, b; input carry_in; output [3:0] sum; output carry_out; wire [3:0] sum; wire carry_out; FullAdd fa0(a[0], b[0], carry_in, sum[0], carry_out1); FullAdd fa1(a[1], b[1], carry_out1, sum[1], carry_out2); FullAdd fa2(a[2], b[2], carry_out2, sum[2], carry_out3); FullAdd fa3(a[3], b[3], carry_out3, sum[3], carry_out); endmodule

Page 22: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Exercise

// FullAdd.V, 全加器 module FullAdd(a, b, carryin, sum, carryout); input a, b, carryin; output sum, carryout; wire sum, carryout; assign {carryout, sum} = a + b + carryin; endmodule

Page 23: Verilog-HDL Reference: Verilog HDL: a guide to digital design and synthesis, Palnitkar, Samir Some of slides in this lecture are supported by Prof. An-Yeu

Exercise

Implement a 16 bits full adder by using 4 bits full adders.