Presentation is loading. Please wait.

Presentation is loading. Please wait.

ECE 353 Computer Systems Lab II VHDL AND LABORATORY TOOLS TUTORIAL Professors Maciej Ciesielski & T. Baird Soules.

Similar presentations


Presentation on theme: "ECE 353 Computer Systems Lab II VHDL AND LABORATORY TOOLS TUTORIAL Professors Maciej Ciesielski & T. Baird Soules."— Presentation transcript:

1 ECE 353 Computer Systems Lab II VHDL AND LABORATORY TOOLS TUTORIAL Professors Maciej Ciesielski & T. Baird Soules

2 Today’s Objectives Basic Principles and Applications of VHDL Programming Basic Principles and Applications of VHDL Programming Introduction to Altera Tools MAX- PLUS+ Introduction to Altera Tools MAX- PLUS+ Basic Tutorial on Logic Analyzer Tools Basic Tutorial on Logic Analyzer Tools

3 What is VHDL? V ery High Speed Integrated Circuit H ardware D escription L anguage V ery High Speed Integrated Circuit H ardware D escription L anguage Used to describe a desired logic circuit Used to describe a desired logic circuit Compiled, Synthesized and Burned onto a working chip Compiled, Synthesized and Burned onto a working chip Simplifies hardware for large projects Simplifies hardware for large projects Examples: Combinatorial Logic, Finite State Machines Examples: Combinatorial Logic, Finite State Machines

4 Let’s Start Simple Combinatorial/Arithmetic Logic Combinatorial/Arithmetic Logic 1-bit full-adder 1-bit full-adder Three Approaches to VHDL Programming: Structural, Arithmetic, and Behavioral

5 Structural (I) Included Libraries: Used in compiling and synthesis. The same for each project. Entity Declaration: Indicates what comes in and what goes out. Architecture Declaration: Defines the entity on a functional level.

6 Structural (II) Structurally defined code assigns a logical function of the inputs to each output Structurally defined code assigns a logical function of the inputs to each output This is most useful for simple combinatorial logic This is most useful for simple combinatorial logic

7 Arithmetic Arithmetic Operation allows for simpler code, but possibly at the expense of chip real estate. Arithmetic Operation allows for simpler code, but possibly at the expense of chip real estate. What is wrong with this code? Think about how the integers are implemented by the synthesizer. What is wrong with this code? Think about how the integers are implemented by the synthesizer.

8 Arithmetic (II) If you choose to code on a higher level, be sure to specify ranges for your variables, otherwise Altera will assume 32-bit unsigned values. If you choose to code on a higher level, be sure to specify ranges for your variables, otherwise Altera will assume 32-bit unsigned values. There is not enough room on the whole chip to store one 32-bit value. There is not enough room on the whole chip to store one 32-bit value.

9 Behavioral Describe how the circuit works is meant to work and let the synthesizer work out the details. Describe how the circuit works is meant to work and let the synthesizer work out the details. This is most useful for Finite State Machines and programs involving sequential statements and processes. We’ll see some examples shortly. This is most useful for Finite State Machines and programs involving sequential statements and processes. We’ll see some examples shortly.

10 Bringing Components Together You can design several different “circuits” in Altera and then bring them together to form a larger design on a single chip. You can design several different “circuits” in Altera and then bring them together to form a larger design on a single chip. Two methods: Two methods: -Code Directly via the Netlist -Altera Tools Graphical Editor

11 Structural Netlist Using our Full Adder code from earlier... -Each stage is made up of a full adder component. -The fulladd code from earlier is also part of this vhdl file, it is not shown here. -The carry out from each stage is assigned as carry in to the next stage. -Notice that c1, c2, c3 are internal signals written in to allow transfer of data between the stages. -This is important because you cannot specify an output pin of a component as an input pin in the same entity. c1, c2, and c3 are like buffers.

12 Syntax Notes and Helpful Hints Don’t forget semi-colons where necessary Don’t forget semi-colons where necessary Top level entity and filename must be the same Top level entity and filename must be the same If you design a smaller “circuit” to be part of a larger project, it is worthwhile for you to test that small piece to ensure that it functions as you intend it to. If you design a smaller “circuit” to be part of a larger project, it is worthwhile for you to test that small piece to ensure that it functions as you intend it to. More is often less. Be specific about your code and the synthesizer will reward you with ample chip space. More is often less. Be specific about your code and the synthesizer will reward you with ample chip space.

13 Finite State Machines (FSMs) What is an FSM? What is an FSM? Two types: Two types: –Moore –Mealy Figure B.27 Computer Organization & Design. 2 nd Ed. (Patterson, Hennessy)

14 Moore FSM Output depends ONLY on current state Output depends ONLY on current state Outputs associated with each state are set at clock transition Outputs associated with each state are set at clock transition

15 Mealy FSM Output depends on inputs AND current state Output depends on inputs AND current state Outputs are set during transitions Outputs are set during transitions

16 Coding FSMs in Altera

17 Process Statement Process computes outputs of sequential statements on each clock tick with respect to the sensitive signals. Process computes outputs of sequential statements on each clock tick with respect to the sensitive signals. Sensitivity list

18 ’EVENT ’EVENT is an Altera construct that represents when the signal is transitioning ’EVENT is an Altera construct that represents when the signal is transitioning IF statement reads: If Clock is making a positive transition THEN …

19 Mealy FSM – see mealy1.vhd on the web Mealy FSM – see mealy1.vhd on the web Moore FSM - see moore.vhd on the web Moore FSM - see moore.vhd on the web Now let’s take a look how to edit, compile, simulate and synthesize your design using Altera software …. Now let’s take a look how to edit, compile, simulate and synthesize your design using Altera software …. …. (proceed with hands on tutorial) …. (proceed with hands on tutorial) VHDL codes for FSM


Download ppt "ECE 353 Computer Systems Lab II VHDL AND LABORATORY TOOLS TUTORIAL Professors Maciej Ciesielski & T. Baird Soules."

Similar presentations


Ads by Google