Download presentation
Presentation is loading. Please wait.
Published byMadeleine Locker Modified over 9 years ago
1
Half Adder Sec. 3.10 Sec. 4.5, 4.12
2
Schedule 11/13MondayCourse intro, diagnostic test 21/15Wednesday Fundamentals of digital logic design (1) (signed numbers) L1/16ThursdayRules, cleaning procedure, linux &Cadence intro. N/A1/20MondayMLK Day (Campus Closed) 31/22Wednesday Fundamentals of digital logic design (2) (Context: Verilog) L1/23ThursdayNAND based NOR gates (Verilog) 41/27MondayNAND based NOT and NOR (Breadboard) 51/29WednesdayBinary addition: half adder L1/30ThursdayBinary: half adder 62/3MondayBinary addition: full adder 72/5WednesdayBinary addition: four-bit adder/subtractor L2/6ThursdayClass Canceled 82/10MondayClass Canceled Test #1: Beginning of March
3
Outline Transition from Verilog to Digital Logic Observations Verilog Lesson Application: Half Adder
4
Observations Lab submissions are due at the beginning of the next lab, i.e. the following Thursday. Path to the files/`timescale Need One bit file per input Power Supply: Tie the common reference ground.
5
`timescale Comment `out timescale Each time interval is one second. Need to update the path! $readmemb(“./bit_str_a_0.txt”,t_A); Default directory: verilogSandBox
6
Need One bit file Per Input C D E F G1 G2 G3G4 Remember to pull the numbers out of the registry. Need one bit file per input!
7
Common Reference Ground
8
Lessons on Verilog Verilog – Running Command Line Verilog $monitor– output the data to the monitor $fmonitor—save data to an output file – Module/module test bench template – assign – Bitwise logic operator
9
Two Ways of Running Verilog Running Verilog Using the GUI Writing Output to a file Advantage: Avoid the GUI Disadvantage: hard to visualize an input pattern
10
Running Verilog at Command Prompt $monitor $fmonitor
11
Monitor Numbers Monitor numbers
12
Run Verilog Using Command- line $monitor only displays the results when A changes. Actual sequence: 101011001011…
13
%0d verses %d (“time=%d”, $time…..)(“time=%0d”, $time…..)
14
Writing Output to a file 1. Declare a file pointer 2. Open a file, specify the file name 3. Use $fmonitor to write to a file 4. Close the file after 1000 time intervals 5. Finish the simulation
15
Module Template module module_name (,, ); endmodule Input, output wires reg Program Body
16
Module Test BenchTemplate //`timescale 1 ms /1 us module module_tb_name (,, ); endmodule Input, output wires reg Define the test bench Call on the module
17
Your First Verilog Program module fig3p37 (A,B,C,D,E); output D,E; input A,B,C; wire w1; and G1(w1,A,B); not G2(E,C); or G3(D,w1,E); endmodule And, not or are primitive gates. The output of a primitive gate is always listed first. The inputs can be listed in any order. G1 is an instance of the and gate.
18
Rewrite the Program Using assign Use & for AND operation Use tilda (~) for the INVERT operation Use | for the OR operation You can think of a wire as a wire in a circuit where actual voltages Could be measured.
19
Waveform
20
Keyword: assign assign : the assignment is said to be sensitive to the variables in the RHS expression because anytime a variable in the RHS changes during the simulation, the RHS expression is reevaluated and the result is used to update the LHS. – RHS: R ight H and S ide of = – LHS: L eft H and S ide of = wire elements are the only legal type on the left hand side of an assign statement. (More about this next time)
21
Bitwise Logic Operation Bitwise means 1 bit at a time Bitwise logic operator Verilog ANDa&b ORa|b XORa^b INVERT~a NAND~(a&b) NOR~(a|b) XNOR!(a^b)
22
Binary Addition Example
23
Derivation of ∑ (ES112 Slides) BA∑ 000 101 011 110
24
Derivation of Carry Out (ES112 Slides) Question: What primitive best implements C o ? Inputs: A, B Outputs: C o =A∙B BACoCo 000 100 010 111
25
Implementation of a Half-Adder
26
Limitation of a Half Adder A half-adder does not account for carry-in.
27
Module Template module module_name (,, ) endmodule Input, output wires reg Program Body Verilog program
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.