Presentation is loading. Please wait.

Presentation is loading. Please wait.

Using VHDL VHDL used for Simulation Synthesis.

Similar presentations


Presentation on theme: "Using VHDL VHDL used for Simulation Synthesis."— Presentation transcript:

1 Using VHDL VHDL used for Simulation Synthesis

2 Example: Electronic Lock

3 Behaviour Model of Electronic Lock

4 Gate Implementation of MUX

5 VHDL Description

6 Synthesized Circuit uses Internal Component from vendor’s Library

7 AND Gate as a Process signal A, B, C : bit; process ( A, B) is begin C < = A and B; end process; -- Shortcut: c <= A and B;

8 Processes run concurrently
architecture structure of ent1 is architecture flow of ent1 is signal Int1, Int2 : std_logic; signal Int1, Int2 : std_logic; begin begin Int1 <= A or C; GATE1 : process (A,C) is Int2 < = B or D; begin Out <= Int1 and Int2; Int1 <= A or C; end flow; end process; GATE2 : process (B,D) is Int2 <= B or D; GATE3 : process (Int1, Int2) is Out <=Int1 and Int2; end structure;

9 Fitting the Circuit onto PLD
A Fitting Tool uses the netlist generated by the synthethiser to place the circuit onto the chip. The post-fit (known as timing) simulation reflects the combined “reality” of the netlist and the way all the components and their interconnections were placed on silicon. It is the closest one can get to a “real” circuit!!!


Download ppt "Using VHDL VHDL used for Simulation Synthesis."

Similar presentations


Ads by Google