ENHANCE YOUR KNOWLEDGE OF VLSI DOMAIN. HERE YOU CAN FIND THE TOPICS REGARDING VLSI DESIGNING AND VERIFICATION SUCH AS DIGITAL DESIGNING BASICS, TIMING ANALYSIS, SYNTHESIS AND SIMULATION, VHDL, VERILOG, SYSTEM VERILOG, ASICS AND MUCH MORE.... SO COME AND EXPLORE YOUR KNOWLEDGE OF VLSI.
Saturday, April 2, 2011
VLSI Encyclopedia: Static Timing Analysis
VLSI Encyclopedia: Static Timing Analysis: "Static timing analysis verifies circuit timing by adding up propagation delays along paths between clocked elements in a circuit. It checks ..."
Saturday, May 1, 2010
Positive and Negative Edge Detector Circuit
Positive and negative edge detection is a common requirement in microprocessors. One application could be to detect edge/level triggered events on certain GPIO inputs. Here i will show you a simple circuit which is use to detect Positive as well negative edges.
VHDL CODE :
library ieee;
use ieee.std_logic_1164.all;
entity edge is
port (
inp : in std_logic; -- inpit
clk : in std_logic; -- clock
rst : in std_logic; -- reset
edge_op : out std_logic); -- setected edge output
end edge;
architecture edge_ar of edge is
signal sig1 : std_logic; -- signal from 1st flop
signal sig2 : std_logic; -- signal from 2nd flop
begin -- edge_ar
edge : process(clk, rst)
begin
if rst = '1' then
sig1 <= '0';
sig2 <= '0';
elsif clk'event and clk = '1' then
sig1 <= inp;
sig2 <= sig1;
end if;
end process edge;
edge_op <= sig1 xor sig2;
end edge_ar;
Saturday, April 3, 2010
What is Clock Skew?
Given two sequentially-adjacent registers, Ri and Rj, and an equipotential clock distribution network, the clock skew between these two registers is defined as
Tskew-i,j = Tci - Tcj
where Tci and Tcj are the clock delays from the clock source to the registers Ri and Rj, respectively.
Subscribe to:
Posts (Atom)


