1. Real Chip Design and Verification using Verilog and VHDL by Ben Cohen
Sunday, November 24, 2013
Advanced FPGA Design Concepts
Today, I have learned a new fpga design concept called "Flancter". Clyde introduced this in the VHDL class.
While searching about this on google, I found couple of interesting links:
http://www.doulos.com/knowhow/fpga/fastcounter/
Books related to this topic:
Real Chip Design and Verification using Verilog and VHDL
While searching about this on google, I found couple of interesting links:
http://www.doulos.com/knowhow/fpga/fastcounter/
Books related to this topic:
Real Chip Design and Verification using Verilog and VHDL
Thursday, November 21, 2013
Using Arrays and For Loop- Example 1
library ieee;
use ieee.std_logic_1164.all;
entity sum_of_squares is
port (
clk : in std_logic;
rst : in std_logic
);
end entity sum_of_squares;
architecture RTL of sum_of_squares is
type onedarrint is array(integer range<>) of real;
procedure sum_squares(inputarr: in onedarrint; result: out real) is
variable acc: real := 0.0;
begin
for i in inputarr'range loop
acc:= acc + (inputarr(i)*inputarr(i));
end loop;
result := acc;
end procedure sum_squares;
begin
testprocedure : process is
variable variations: onedarrint(0 to 100);
variable sum: real;
begin
-- Initialize array
for i in variations'range loop
variations(i):= real(i);
end loop;
sum_squares(variations,sum);
wait;
end process testprocedure;
use ieee.std_logic_1164.all;
entity sum_of_squares is
port (
clk : in std_logic;
rst : in std_logic
);
end entity sum_of_squares;
architecture RTL of sum_of_squares is
type onedarrint is array(integer range<>) of real;
procedure sum_squares(inputarr: in onedarrint; result: out real) is
variable acc: real := 0.0;
begin
for i in inputarr'range loop
acc:= acc + (inputarr(i)*inputarr(i));
end loop;
result := acc;
end procedure sum_squares;
begin
testprocedure : process is
variable variations: onedarrint(0 to 100);
variable sum: real;
begin
-- Initialize array
for i in variations'range loop
variations(i):= real(i);
end loop;
sum_squares(variations,sum);
wait;
end process testprocedure;
Tuesday, November 19, 2013
VHDL Tips and Tricks
1. Sensitivity List for combinatorial process
Assembling the sensitivity list for a combinatorial process can be a problem some times. A handy trick in this case is to use "all"
Lengthy way:
fsm: process(clk, in1, in2, next_state)
\....
Easier Way:
fsm: process(all)
2. with select and when-else
Assembling the sensitivity list for a combinatorial process can be a problem some times. A handy trick in this case is to use "all"
Lengthy way:
fsm: process(clk, in1, in2, next_state)
\....
Easier Way:
fsm: process(all)
2. with select and when-else
Subscribe to:
Posts (Atom)