Tải bản đầy đủ (.ppt) (16 trang)

Công nghệ vi điện tử

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (263.68 KB, 16 trang )

(30 hours)
CÔNG NGH VI Đi N TỆ Ệ Ử
(Microelectronic Technology)
Ch ng 8: Basic Design ươ
Slide 2
N i dungộ

Concepts

Multiplexers

Encoders

Priority Encoders

Decoders

Comparators

BCD to 7 SEGMENT

ALUs
Slide 3
Module

General definition
module module_name ( port_list );
port declarations;

variable declaration;


description of behavior
endmodule

Example
module HalfAdder (A, B, Sum Carry);
input A, B;
output Sum, Carry;
assign Sum = A ^ B;
//^ denotes XOR
assign Carry = A & B;
// & denotes AND
endmodule
Slide 4
Description Styles

Structural: Logic is described in terms of Verilog gate primitives

Execution: Concurrent

Example:
not n1(sel_n, sel);
and a1(sel_b, b, sel_b);
and a2(sel_a, a, sel);
or o1(out, sel_b, sel_a);
sel
b
a
out
sel_n
sel_b

sel_a
n1
a1
a2
o1
Slide 5
Description Styles (cont)

Dataflow: Specify output signals in terms of input signals

Uses continuous assignment statement

Format: assign net = expression;

All continuous assignment statements execute concurrently

Order of the statement does not impact the design

Example:
assign out = (sel & a)
| (~sel & b);
sel
b
a
out
sel_n
sel_b
sel_a
Slide 6
Description Styles (cont.)


Behavioral: Algorithmically specify the behavior of the
design

Example:
if (select == 0) begin
out = b;
end
else if (select == 1) begin
out = a;
end
a
b
sel
out
Black Box
2x1 MUX

Tài liệu bạn tìm kiếm đã sẵn sàng tải về

Tải bản đầy đủ ngay
×