repo_name
stringlengths 6
79
| path
stringlengths 5
236
| copies
stringclasses 54
values | size
stringlengths 1
8
| content
stringlengths 0
1.04M
⌀ | license
stringclasses 15
values |
---|---|---|---|---|---|
lsangild/DSD | Exercise3/Multiplication/Multiplication.vhd | 1 | 437 | ----- Libraries -----
LIBRARY ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
-----Entity----
entity multiplication is
port(
SW : in std_logic_vector(199 downto 0);
LEDR : out std_logic_vector(199 downto 0)
);
end multiplication;
----Architecture-----
architecture multiplier of multiplication is
begin
LEDR(199 downto 0) <= std_logic_vector(unsigned(SW(199 downto 100)) * unsigned(SW(99 downto 0)));
end multiplier; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/altera_lnsim/ama_register_function/_primary.vhd | 5 | 1156 | library verilog;
use verilog.vl_types.all;
entity ama_register_function is
generic(
width_data_in : integer := 1;
width_data_out : integer := 1;
register_clock : string := "UNREGISTERED";
register_aclr : string := "NONE";
width_data_in_msb: vl_notype;
width_data_out_msb: vl_notype
);
port(
clock : in vl_logic_vector(3 downto 0);
aclr : in vl_logic_vector(3 downto 0);
ena : in vl_logic_vector(3 downto 0);
data_in : in vl_logic_vector;
data_out : out vl_logic_vector
);
attribute mti_svvh_generic_type : integer;
attribute mti_svvh_generic_type of width_data_in : constant is 1;
attribute mti_svvh_generic_type of width_data_out : constant is 1;
attribute mti_svvh_generic_type of register_clock : constant is 1;
attribute mti_svvh_generic_type of register_aclr : constant is 1;
attribute mti_svvh_generic_type of width_data_in_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_out_msb : constant is 3;
end ama_register_function;
| mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_testbench_salt_GNUCY2GBID.vhd | 4 | 1747 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
library std;
use std.textio.all;
entity alt_dspbuilder_testbench_salt_GNUCY2GBID is
generic ( XFILE : string := "default");
port(
clock : in std_logic;
aclr : in std_logic;
output : out std_logic_vector(2 downto 0));
end entity;
architecture rtl of alt_dspbuilder_testbench_salt_GNUCY2GBID is
function to_std_logic (B: character) return std_logic is
begin
case B is
when '0' => return '0';
when '1' => return '1';
when OTHERS => return 'X';
end case;
end;
function to_std_logic_vector (B: string) return
std_logic_vector is
variable res: std_logic_vector (B'range);
begin
for i in B'range loop
case B(i) is
when '0' => res(i) := '0';
when '1' => res(i) := '1';
when OTHERS => res(i) := 'X';
end case;
end loop;
return res;
end;
procedure skip_type_header(file f:text) is
use STD.textio.all;
variable in_line : line;
begin
readline(f, in_line);
end procedure skip_type_header ;
file InputFile : text open read_mode is XFILE;
Begin
-- salt generator
skip_type_header(InputFile);
-- Reading Simulink Input
Input_pInput:process(clock, aclr)
variable s : string(1 to 3) ;
variable ptr : line ;
begin
if (aclr = '1') then
output <= (others=>'0');
elsif (not endfile(InputFile)) then
if clock'event and clock='0' then
readline(Inputfile, ptr);
read(ptr, s);
output <= to_std_logic_vector(s);
end if ;
end if ;
end process ;
end architecture;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_sStepAltr.vhd | 8 | 3488 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library ieee ;
use ieee.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_sStepAltr is
generic (
StepDelay : positive ;
direction : natural
);
port (
clock : in std_logic;
ena : in std_logic :='1';
sclr : in std_logic :='0';
aclr : in std_logic :='0';
user_aclr : in std_logic :='0';
q : out std_logic
);
end alt_dspbuilder_sStepAltr ;
architecture syn of alt_dspbuilder_sStepAltr is
type States_StepAltr is (sclear, slow, shigh);
signal current_state : States_StepAltr;
signal next_state : States_StepAltr;
signal iq : std_logic;
signal count : std_logic_vector(ToNatural(nbitnecessary(StepDelay)-1) downto 0);
signal aclr_i : std_logic;
begin
aclr_i <= aclr or user_aclr;
gr:if StepDelay=1 generate
process(clock,aclr_i)
begin
if aclr_i='1' then
iq <= '0';
elsif clock'event and clock='1' then
if (sclr='1') then
iq <= '0';
elsif (ena='1') then
iq <='1';
end if;
end if;
end process;
end generate gr;
grr:if StepDelay>1 generate
rp:process(clock,aclr_i)
begin
if aclr_i='1' then
count <= (others=>'0');
current_state <= sclear;
elsif clock'event and clock='1' then
if (sclr='1') then
count <= (others=>'0');
current_state <= sclear;
elsif (ena='1') then
count <= count+int2ustd(1,nbitnecessary(StepDelay));
current_state <= next_state;
end if;
end if;
end process;
cp:process(count, current_state, sclr,ena)
begin
case current_state is
when sclear =>
iq <= '0';
if (ena='1') and (sclr='0') then
next_state <= slow;
else
next_state <= sclear;
end if;
when slow =>
iq <= '0';
if (sclr='1') then
next_state <= sclear;
elsif (count=int2ustd(StepDelay-1,nbitnecessary(StepDelay))) and (ena ='1') then
next_state <= shigh;
else
next_state <= slow ;
end if;
when shigh =>
iq <= '1';
if (sclr='1') then
next_state <= sclear;
else
next_state <= shigh ;
end if;
end case;
end process;
end generate grr;
g1: if 1=direction generate
q <= iq;
end generate g1;
g0: if 0=direction generate
q <= not iq;
end generate g0;
end syn;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/hdl/alt_dspbuilder_SBF.vhd | 20 | 8869 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_SBF is
generic (
width_inl : natural :=10;
width_inr : natural :=10;
width_outl : natural :=8;
width_outr : natural :=8;
round : natural :=1;
satur : natural :=1;
lpm_signed : BusArithm :=BusIsSigned
);
port (
xin : in std_logic_vector(width_inl+width_inr-1 downto 0);
yout : out std_logic_vector(width_outl+width_outr-1 downto 0)
);
end alt_dspbuilder_SBF;
architecture SBF_SYNTH of alt_dspbuilder_SBF is
signal youtround : std_logic_vector(width_inl+width_outr-1 downto 0);
signal youtroundc : std_logic_vector(width_outl+width_outr-1 downto 0);
signal xinextc : std_logic_vector(width_outl+width_inr-1 downto 0) ;
signal xin_int : std_logic_vector(width_inl+width_inr-1 downto 0);
begin
u0: alt_dspbuilder_sAltrPropagate generic map(QTB=>DSPBuilderQTB, QTB_PRODUCT => DSPBuilderProduct, QTB_VERSION => DSPBuilderVersion , width=> width_inl+width_inr)
port map (d => xin, r => xin_int);
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--(width_inl>=width_outl) and (width_inr>=width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_a:if (width_inl>=width_outl) and (width_inr>=width_outr) generate
gnsnr:if (round = 0) generate
gnsat:if (satur=0) generate
gl:for i in 0 to width_outl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate ;
end generate gnsat;
gsat:if (satur>0) generate
gl:for i in 0 to width_inl+width_outr-1 generate
youtround(i) <= xin_int(i+width_inr-width_outr);
end generate ;
us:alt_dspbuilder_ASAT
generic map ( widthin => width_inl+width_outr,
widthout => width_outl+width_outr,
lpm_signed => lpm_signed)
port map ( xin => youtround,
yout => yout);
end generate gsat;
end generate ;
rnd:if (round>0)generate
ura:alt_dspbuilder_AROUND
generic map ( widthin => width_inl+width_inr,
widthout => width_inl+width_outr)
port map ( xin => xin_int,
yout => youtround);
gns:if satur=0 generate
yout(width_outl+width_outr-1 downto 0) <= youtround(width_outl+width_outr-1 downto 0);
end generate gns;
gs:if (satur>0) generate
us:alt_dspbuilder_ASAT
generic map ( widthin => width_inl+width_outr,
widthout => width_outl+width_outr,
lpm_signed => lpm_signed)
port map ( xin => youtround,
yout => yout
);
end generate gs;
end generate rnd;
end generate sbf_a;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- (width_inl>width_outl) and (width_inr<width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_b:if (width_inl>=width_outl) and (width_inr<width_outr) generate
ns:if (satur=0) generate
gc:for i in 0 to width_outr-width_inr-1 generate
yout(i) <= '0';
end generate gc;
gl:for i in width_outr-width_inr to width_outl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate ;
end generate ns ;
gs:if (satur>0) generate
gc:for i in 0 to width_outr-width_inr-1 generate
youtround(i) <= '0';
end generate gc;
gl:for i in width_outr-width_inr to width_inl+width_outr-1 generate
youtround(i) <= xin_int(i+width_inr-width_outr);
end generate ;
us:alt_dspbuilder_ASAT
generic map ( widthin => width_inl+width_outr,
widthout => width_outl+width_outr,
lpm_signed => lpm_signed)
port map ( xin => youtround,
yout => yout);
end generate gs ;
end generate sbf_b;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- (width_inl<width_outl) and (width_inr>width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_c:if (width_inl<width_outl) and (width_inr>=width_outr) generate
gnsnr:if (round = 0) generate
gl:for i in 0 to width_inl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate ;
gc:for i in width_inl+width_outr to width_outl+width_outr-1 generate
yout(i) <= xin_int( width_inl+width_inr-1);
end generate ;
end generate ;
rnd:if (round > 0) generate
xinextc(width_inl+width_inr-1 downto 0) <= xin_int(width_inl+width_inr-1 downto 0);
gxinextc:for i in width_inl+width_inr to width_outl+width_inr-1 generate
xinextc(i) <= xin_int(width_inl+width_inr-1);
end generate gxinextc;
urb:alt_dspbuilder_AROUND
generic map ( widthin => width_outl+width_inr,
widthout => width_outl+width_outr)
port map ( xin => xinextc,
yout => youtroundc);
yout <= youtroundc;
end generate rnd ;
end generate sbf_c;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- (width_inl<width_outl) and (width_inr<width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_d:if (width_inl<width_outl) and (width_inr<width_outr) generate
gl:for i in width_outr-width_inr to width_inl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate gl;
gc:for i in 0 to width_outr-width_inr-1 generate
yout(i) <= '0';
end generate gc;
gcv:for i in width_inl+width_outr to width_outl+width_outr-1 generate
yout(i) <= xin_int( width_inl+width_inr-1);
end generate gcv;
end generate sbf_d;
end SBF_SYNTH;
| mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_testbench_capture_GNHCRI5YMO.vhd | 20 | 1775 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
library std;
use std.textio.all;
entity alt_dspbuilder_testbench_capture_GNHCRI5YMO is
generic ( XFILE : string := "default";
DSPBTYPE : string := "");
port(
clock : in std_logic;
aclr : in std_logic;
input : in std_logic_vector(23 downto 0));
end entity;
architecture rtl of alt_dspbuilder_testbench_capture_GNHCRI5YMO is
function str(sl: std_logic) return character is
variable c: character;
begin
case sl is
when '0' => c := '0';
when '1' => c := '1';
when others => c := 'X';
end case;
return c;
end str;
function str(slv: std_logic_vector) return string is
variable result : string (1 to slv'length);
variable r : integer;
begin
r := 1;
for i in slv'range loop
result(r) := str(slv(i));
r := r + 1;
end loop;
return result;
end str;
procedure write_type_header(file f:text) is
use STD.textio.all;
variable my_line : line;
begin
write ( my_line, DSPBTYPE);
writeline ( f, my_line );
end procedure write_type_header ;
file oFile : text open write_mode is XFILE;
Begin
-- data capture
-- write type information to output file
write_type_header(oFile);
-- Writing Output Signal into file
Output:process(clock)
variable traceline : line ;
begin
if (aclr ='1') then
-- do not record
elsif clock'event and clock='1' then
write(traceline, str(input),justified=>left);
writeline(oFile,traceline);
end if ;
end process ;
end architecture;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/altera_lnsim/ama_data_split_reg_ext_function/_primary.vhd | 5 | 4463 | library verilog;
use verilog.vl_types.all;
entity ama_data_split_reg_ext_function is
generic(
width_data_in : integer := 1;
width_data_out : vl_notype;
register_clock_0: string := "UNREGISTERED";
register_aclr_0 : string := "NONE";
register_clock_1: string := "UNREGISTERED";
register_aclr_1 : string := "NONE";
register_clock_2: string := "UNREGISTERED";
register_aclr_2 : string := "NONE";
register_clock_3: string := "UNREGISTERED";
register_aclr_3 : string := "NONE";
number_of_multipliers: integer := 1;
port_sign : string := "PORT_UNUSED";
latency : integer := 0;
latency_clock_0 : string := "UNREGISTERED";
latency_aclr_0 : string := "NONE";
latency_clock_1 : string := "UNREGISTERED";
latency_aclr_1 : string := "NONE";
latency_clock_2 : string := "UNREGISTERED";
latency_aclr_2 : string := "NONE";
latency_clock_3 : string := "UNREGISTERED";
latency_aclr_3 : string := "NONE";
width_data_in_msb: vl_notype;
width_data_in_total_msb: vl_notype;
width_data_out_msb: vl_notype;
width_data_in_0_msb: vl_notype;
width_data_in_0_lsb: integer := 0;
width_data_in_1_msb: vl_notype;
width_data_in_1_lsb: vl_notype;
width_data_in_2_msb: vl_notype;
width_data_in_2_lsb: vl_notype;
width_data_in_3_msb: vl_notype;
width_data_in_3_lsb: vl_notype
);
port(
clock : in vl_logic_vector(3 downto 0);
aclr : in vl_logic_vector(3 downto 0);
ena : in vl_logic_vector(3 downto 0);
sign : in vl_logic;
data_in : in vl_logic_vector;
data_out_0 : out vl_logic_vector;
data_out_1 : out vl_logic_vector;
data_out_2 : out vl_logic_vector;
data_out_3 : out vl_logic_vector
);
attribute mti_svvh_generic_type : integer;
attribute mti_svvh_generic_type of width_data_in : constant is 1;
attribute mti_svvh_generic_type of width_data_out : constant is 3;
attribute mti_svvh_generic_type of register_clock_0 : constant is 1;
attribute mti_svvh_generic_type of register_aclr_0 : constant is 1;
attribute mti_svvh_generic_type of register_clock_1 : constant is 1;
attribute mti_svvh_generic_type of register_aclr_1 : constant is 1;
attribute mti_svvh_generic_type of register_clock_2 : constant is 1;
attribute mti_svvh_generic_type of register_aclr_2 : constant is 1;
attribute mti_svvh_generic_type of register_clock_3 : constant is 1;
attribute mti_svvh_generic_type of register_aclr_3 : constant is 1;
attribute mti_svvh_generic_type of number_of_multipliers : constant is 1;
attribute mti_svvh_generic_type of port_sign : constant is 1;
attribute mti_svvh_generic_type of latency : constant is 1;
attribute mti_svvh_generic_type of latency_clock_0 : constant is 1;
attribute mti_svvh_generic_type of latency_aclr_0 : constant is 1;
attribute mti_svvh_generic_type of latency_clock_1 : constant is 1;
attribute mti_svvh_generic_type of latency_aclr_1 : constant is 1;
attribute mti_svvh_generic_type of latency_clock_2 : constant is 1;
attribute mti_svvh_generic_type of latency_aclr_2 : constant is 1;
attribute mti_svvh_generic_type of latency_clock_3 : constant is 1;
attribute mti_svvh_generic_type of latency_aclr_3 : constant is 1;
attribute mti_svvh_generic_type of width_data_in_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_total_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_out_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_0_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_0_lsb : constant is 1;
attribute mti_svvh_generic_type of width_data_in_1_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_1_lsb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_2_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_2_lsb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_3_msb : constant is 3;
attribute mti_svvh_generic_type of width_data_in_3_lsb : constant is 3;
end ama_data_split_reg_ext_function;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/altera_lnsim/generic_pll/_primary.vhd | 5 | 1932 | library verilog;
use verilog.vl_types.all;
entity generic_pll is
generic(
lpm_type : string := "generic_pll";
duty_cycle : integer := 50;
output_clock_frequency: string := "0 ps";
phase_shift : string := "0 ps";
reference_clock_frequency: string := "0 ps";
sim_additional_refclk_cycles_to_lock: integer := 0;
fractional_vco_multiplier: string := "false";
use_khz : integer := 1
);
port(
refclk : in vl_logic;
rst : in vl_logic;
fbclk : in vl_logic;
writerefclkdata : in vl_logic_vector(63 downto 0);
writeoutclkdata : in vl_logic_vector(63 downto 0);
writephaseshiftdata: in vl_logic_vector(63 downto 0);
writedutycycledata: in vl_logic_vector(63 downto 0);
outclk : out vl_logic;
locked : out vl_logic;
fboutclk : out vl_logic;
readrefclkdata : out vl_logic_vector(63 downto 0);
readoutclkdata : out vl_logic_vector(63 downto 0);
readphaseshiftdata: out vl_logic_vector(63 downto 0);
readdutycycledata: out vl_logic_vector(63 downto 0)
);
attribute mti_svvh_generic_type : integer;
attribute mti_svvh_generic_type of lpm_type : constant is 1;
attribute mti_svvh_generic_type of duty_cycle : constant is 1;
attribute mti_svvh_generic_type of output_clock_frequency : constant is 1;
attribute mti_svvh_generic_type of phase_shift : constant is 1;
attribute mti_svvh_generic_type of reference_clock_frequency : constant is 1;
attribute mti_svvh_generic_type of sim_additional_refclk_cycles_to_lock : constant is 1;
attribute mti_svvh_generic_type of fractional_vco_multiplier : constant is 1;
attribute mti_svvh_generic_type of use_khz : constant is 1;
end generic_pll;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_cast_GNWMSU6SSZ.vhd | 3 | 846 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_cast_GNWMSU6SSZ is
generic ( round : natural := 0;
saturate : natural := 0);
port(
input : in std_logic;
output : out std_logic_vector(23 downto 0));
end entity;
architecture rtl of alt_dspbuilder_cast_GNWMSU6SSZ is
Begin
-- Output - I/O assignment from Simulink Block "Output"
Outputi : alt_dspbuilder_SBF generic map(
width_inl=> 1 + 1 ,
width_inr=> 0,
width_outl=> 24,
width_outr=> 0,
lpm_signed=> BusIsUnsigned ,
round=> round,
satur=> saturate)
port map (
xin(0) => input,
xin(1) => '0', yout => output
);
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_bus_concat_GNAUBM7IRL.vhd | 8 | 653 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_bus_concat_GNAUBM7IRL is
generic ( widthB : natural := 4;
widthA : natural := 4);
port(
a : in std_logic_vector((widthA)-1 downto 0);
aclr : in std_logic;
b : in std_logic_vector((widthB)-1 downto 0);
clock : in std_logic;
output : out std_logic_vector((widthA+widthB)-1 downto 0));
end entity;
architecture rtl of alt_dspbuilder_bus_concat_GNAUBM7IRL is
Begin
output <= a & b;
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_constant_GNARGC6IJC.vhd | 1 | 576 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_constant_GNARGC6IJC is
generic ( HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000000111100000";
width : natural := 16);
port(
output : out std_logic_vector(15 downto 0));
end entity;
architecture rtl of alt_dspbuilder_constant_GNARGC6IJC is
Begin
-- Constant
output <= "0000000111100000";
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_cast_GN76IOUHQH.vhd | 3 | 876 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_cast_GN76IOUHQH is
generic ( round : natural := 0;
saturate : natural := 0);
port(
input : in std_logic_vector(11 downto 0);
output : out std_logic_vector(3 downto 0));
end entity;
architecture rtl of alt_dspbuilder_cast_GN76IOUHQH is
Begin
-- Output - I/O assignment from Simulink Block "Output"
Outputi : alt_dspbuilder_SBF generic map(
width_inl=> 4 + 1 ,
width_inr=> 8,
width_outl=> 4,
width_outr=> 0,
lpm_signed=> BusIsUnsigned ,
round=> round,
satur=> saturate)
port map (
xin(11 downto 0) => input,
xin(12) => '0', yout => output
);
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_counter_GNCXSYJEM5.vhd | 4 | 1597 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_counter_GNCXSYJEM5 is
generic ( use_usr_aclr : string := "false";
use_ena : string := "false";
use_cin : string := "false";
use_sset : string := "false";
ndirection : natural := 1;
svalue : string := "1";
use_sload : string := "false";
use_sclr : string := "true";
use_cout : string := "false";
modulus : integer := -1;
use_cnt_ena : string := "true";
width : natural := 16;
use_aset : string := "false";
use_aload : string := "false";
avalue : string := "0");
port(
aclr : in std_logic;
aload : in std_logic;
aset : in std_logic;
cin : in std_logic;
clock : in std_logic;
cnt_ena : in std_logic;
cout : out std_logic;
data : in std_logic_vector((width)-1 downto 0);
direction : in std_logic;
ena : in std_logic;
q : out std_logic_vector((width)-1 downto 0);
sclr : in std_logic;
sload : in std_logic;
sset : in std_logic;
user_aclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_counter_GNCXSYJEM5 is
Begin
-- DSP Builder Block - Simulink Block "Counter"
Counteri : lpm_counter Generic map (
LPM_WIDTH => 16,
LPM_DIRECTION => "UP",
LPM_AVALUE => "0",
LPM_SVALUE => "1",
LPM_TYPE => "LPM_COUNTER"
)
port map (
clock => clock,
cnt_en => cnt_ena,
aclr => aclr,
sclr => sclr,
q => q);
end architecture;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/hdl/alt_dspbuilder_constant_GNOJLBOQHG.vhd | 1 | 576 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_constant_GNOJLBOQHG is
generic ( HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000001011001111";
width : natural := 16);
port(
output : out std_logic_vector(15 downto 0));
end entity;
architecture rtl of alt_dspbuilder_constant_GNOJLBOQHG is
Begin
-- Constant
output <= "0000001011001111";
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/hdl/alt_dspbuilder_constant_GNXXQTWZME.vhd | 1 | 576 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_constant_GNXXQTWZME is
generic ( HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000000000010100";
width : natural := 16);
port(
output : out std_logic_vector(15 downto 0));
end entity;
architecture rtl of alt_dspbuilder_constant_GNXXQTWZME is
Begin
-- Constant
output <= "0000000000010100";
end architecture; | mit |
lsangild/DSD | Exercise5/CountOnes/CountOnes.vhd | 1 | 569 | -----Libraries-----
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
-----Entities-----
entity CountOnes is
port( A : in std_logic_vector(7 downto 0);
ones : out std_logic_vector(3 downto 0)
);
end CountOnes;
-----Architectures-----
architecture Counter of CountOnes is
begin
po: process(A)
variable count : std_logic_vector(3 downto 0);
begin
count := "0000";
for index in 7 downto 0 loop
count := std_logic_vector(unsigned(count) + resize(unsigned(A(index downto index)),4));
end loop;
ones <= count;
end process po;
end Counter; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_cast_GNSB3OXIQS.vhd | 16 | 853 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_cast_GNSB3OXIQS is
generic ( round : natural := 0;
saturate : natural := 0);
port(
input : in std_logic_vector(0 downto 0);
output : out std_logic);
end entity;
architecture rtl of alt_dspbuilder_cast_GNSB3OXIQS is
Begin
-- Output - I/O assignment from Simulink Block "Output"
Outputi : alt_dspbuilder_SBF generic map(
width_inl=> 1 + 1 ,
width_inr=> 0,
width_outl=> 1,
width_outr=> 0,
lpm_signed=> BusIsUnsigned ,
round=> round,
satur=> saturate)
port map (
xin(0 downto 0) => input,
xin(1) => '0', yout(0) => output
);
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_port_GNS2GDLO5E.vhd | 4 | 487 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_port_GNS2GDLO5E is
port(
input : in std_logic_vector(2 downto 0);
output : out std_logic_vector(2 downto 0));
end entity;
architecture rtl of alt_dspbuilder_port_GNS2GDLO5E is
Begin
-- Straight Bypass block
output <= input;
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_decoder.vhd | 7 | 1660 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_decoder is
generic (
DECODE : string := "00000000";
PIPELINE : natural := 0;
WIDTH : natural := 8
);
port (
dec : out std_logic;
clock : in std_logic;
sclr : in std_logic;
data : in std_logic_vector(width-1 downto 0);
aclr : in std_logic;
ena : in std_logic
);
end entity alt_dspbuilder_decoder;
architecture rtl of alt_dspbuilder_decoder is
component alt_dspbuilder_decoder_GNSCEXJCJK is
generic (
DECODE : string := "000000000000000000001111";
PIPELINE : natural := 0;
WIDTH : natural := 24
);
port (
aclr : in std_logic;
clock : in std_logic;
data : in std_logic_vector(24-1 downto 0);
dec : out std_logic;
ena : in std_logic;
sclr : in std_logic
);
end component alt_dspbuilder_decoder_GNSCEXJCJK;
begin
alt_dspbuilder_decoder_GNSCEXJCJK_0: if ((DECODE = "000000000000000000001111") and (PIPELINE = 0) and (WIDTH = 24)) generate
inst_alt_dspbuilder_decoder_GNSCEXJCJK_0: alt_dspbuilder_decoder_GNSCEXJCJK
generic map(DECODE => "000000000000000000001111", PIPELINE => 0, WIDTH => 24)
port map(aclr => aclr, clock => clock, data => data, dec => dec, ena => ena, sclr => sclr);
end generate;
assert not (((DECODE = "000000000000000000001111") and (PIPELINE = 0) and (WIDTH = 24)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_testbench_capture.vhd | 10 | 676 | -- This file is not intended for synthesis. The entity described in this file
-- is not directly instantiatable from HDL because its port list changes in a
-- way which is too complex to describe in VHDL or Verilog. Please use a tool
-- such as SOPC builder, DSP builder or the Megawizard plug-in manager to
-- instantiate this entity.
--altera translate_off
entity alt_dspbuilder_testbench_capture is
end entity alt_dspbuilder_testbench_capture;
architecture rtl of alt_dspbuilder_testbench_capture is
begin
assert false report "This file is not intended for synthesis. Please remove it from your project" severity error;
end architecture rtl;
--altera translate_on
| mit |
lsangild/DSD | Exercise6/Clock6/watch.vhd | 2 | 2522 | ----- Libraries------
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
----- Entity ------
entity watch is
port ( clk, speed, reset : in std_logic;
sec_1, sec_10,
min_1, min_10,
hrs_1, hrs_10 : out std_logic_vector(6 downto 0);
time : out std_logic_vector(15 downto 0)
);
end watch;
-----Architecture-----
architecture watch_tester of watch is
signal clocker : std_logic_vector(5 downto 0) := "000000";
signal counter : std_logic_vector(23 downto 0) := "000000000000000000000000";
signal sclk : std_logic := '0';
signal reset_out : std_logic := '1';
begin
res : entity work.reset_logic port map (reset_in => reset, reset_out => reset_out, hrs_bin1 => counter(19 downto 16), hrs_bin10 => counter(23 downto 20));
clo : entity work.clock_gen port map (clk => clk, speed => speed, reset => reset_out, clk_out => sclk);
sec1 : entity work.multi_counter port map ( clk => sclk, reset => reset_out, count => counter(3 downto 0),
cout => clocker(0), mode => "00"); -- til 9
hexs1 : entity work.Binary_7_segment port map (bin => counter(3 downto 0), seg => sec_1);
sec10 : entity work.multi_counter port map ( clk => clocker(0), reset => reset_out, count => counter(7 downto 4),
cout => clocker(1), mode => "01"); -- til 5
hexs10 : entity work.Binary_7_segment port map (bin => counter(7 downto 4), seg => sec_10);
min1 : entity work.multi_counter port map ( clk => clocker(1), reset => reset_out, count => counter(11 downto 8),
cout => clocker(2), mode => "00"); -- til 9
hexm1 : entity work.Binary_7_segment port map (bin => counter(11 downto 8), seg => min_1);
min10 : entity work.multi_counter port map ( clk => clocker(2), reset => reset_out, count => counter(15 downto 12),
cout => clocker(3), mode => "01"); -- til 5
hexm10 : entity work.Binary_7_segment port map (bin => counter(15 downto 12), seg => min_10);
hrs1 : entity work.multi_counter port map ( clk => clocker(3), reset => reset_out, count => counter(19 downto 16),
cout => clocker(4), mode => "00"); -- til 9
hexh1 : entity work.Binary_7_segment port map (bin => counter(19 downto 16), seg => hrs_1);
hrs10 : entity work.multi_counter port map ( clk => clocker(4), reset => reset_out, count => counter(23 downto 20),
cout => clocker(5), mode => "10"); -- til 2
hexh10 : entity work.Binary_7_segment port map (bin => counter(23 downto 20), seg => hrs_10);
time <= counter(23 downto 8);
end watch_tester; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_testbench_clock.vhd | 10 | 2218 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_testbench_clock is
generic (
PHASE_DELAY : string := "0 ns";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "20 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
clock_out : out std_logic;
aclr_out : out std_logic;
tb_aclr : out std_logic;
reg_aclr_out : out std_logic
);
end entity alt_dspbuilder_testbench_clock;
architecture rtl of alt_dspbuilder_testbench_clock is
component alt_dspbuilder_testbench_clock_GNXGQJH2DS is
generic (
PHASE_DELAY : string := "0 fs";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "7.499999999999999 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
aclr_out : out std_logic;
clock_out : out std_logic;
reg_aclr_out : out std_logic;
tb_aclr : out std_logic
);
end component alt_dspbuilder_testbench_clock_GNXGQJH2DS;
begin
alt_dspbuilder_testbench_clock_GNXGQJH2DS_0: if ((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "7.499999999999999 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)) generate
inst_alt_dspbuilder_testbench_clock_GNXGQJH2DS_0: alt_dspbuilder_testbench_clock_GNXGQJH2DS
generic map(PHASE_DELAY => "0 fs", SIMULATION_START_CYCLE => 4, RESET_LATENCY => 0, INITIAL_CLOCK => 1, PERIOD => "7.499999999999999 ns", RESET_REGISTER_CASCADE_DEPTH => 0)
port map(aclr_out => aclr_out, clock_out => clock_out, reg_aclr_out => reg_aclr_out, tb_aclr => tb_aclr);
end generate;
assert not (((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "7.499999999999999 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_decoder_GN7UJNSI7B.vhd | 2 | 903 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_decoder_GN7UJNSI7B is
generic ( decode : string := "101";
pipeline : natural := 1;
width : natural := 3);
port(
aclr : in std_logic;
clock : in std_logic;
data : in std_logic_vector((width)-1 downto 0);
dec : out std_logic;
ena : in std_logic;
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_decoder_GN7UJNSI7B is
Begin
-- DSP Builder Block - Simulink Block "Decoder"
Decoderi : alt_dspbuilder_sdecoderaltr Generic map (
width => 3,
decode => "101",
pipeline => 1)
port map (
aclr => aclr,
user_aclr => '0',
sclr => sclr,
clock => clock,
data => data,
dec => dec);
end architecture; | mit |
lsangild/DSD | Exercise2/half_adder/simulation/qsim/work/full_adder_vlg_vec_tst/_primary.vhd | 1 | 104 | library verilog;
use verilog.vl_types.all;
entity full_adder_vlg_vec_tst is
end full_adder_vlg_vec_tst;
| mit |
lsangild/DSD | Exercise4/Demultiplexing/Tester.vhd | 1 | 660 | -----Libraries-----
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
-----Entity-----
entity tester is
port( KEY : in std_logic_vector(1 downto 0);
SW : in std_logic_vector(11 downto 0);
HEX0, HEX1, HEX2, HEX3 : out std_logic_vector(6 downto 0)
);
end tester;
-----Architecture-----
architecture TEST of tester is
signal data_val : std_logic_vector(20 downto 0) := "111111111111111111111";
begin
HEX3 <= "1111111";
MX : entity work.Multiplexer port map (data => data_val, bin_in => SW, ab => KEY);
DMX : entity work.Demultiplexer port map (data_in => data_val, disp0 => HEX0, disp1 => HEX1, disp2 => HEX2);
end TEST; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_cast_GNGABHQUMP.vhd | 2 | 877 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_cast_GNGABHQUMP is
generic ( round : natural := 0;
saturate : natural := 0);
port(
input : in std_logic_vector(31 downto 0);
output : out std_logic_vector(2 downto 0));
end entity;
architecture rtl of alt_dspbuilder_cast_GNGABHQUMP is
Begin
-- Output - I/O assignment from Simulink Block "Output"
Outputi : alt_dspbuilder_SBF generic map(
width_inl=> 32 + 1 ,
width_inr=> 0,
width_outl=> 3,
width_outr=> 0,
lpm_signed=> BusIsUnsigned ,
round=> round,
satur=> saturate)
port map (
xin(31 downto 0) => input,
xin(32) => '0', yout => output
);
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_cast_GNGABHQUMP.vhd | 2 | 877 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_cast_GNGABHQUMP is
generic ( round : natural := 0;
saturate : natural := 0);
port(
input : in std_logic_vector(31 downto 0);
output : out std_logic_vector(2 downto 0));
end entity;
architecture rtl of alt_dspbuilder_cast_GNGABHQUMP is
Begin
-- Output - I/O assignment from Simulink Block "Output"
Outputi : alt_dspbuilder_SBF generic map(
width_inl=> 32 + 1 ,
width_inr=> 0,
width_outl=> 3,
width_outr=> 0,
lpm_signed=> BusIsUnsigned ,
round=> round,
satur=> saturate)
port map (
xin(31 downto 0) => input,
xin(32) => '0', yout => output
);
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_clock.vhd | 2 | 1461 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_clock is
generic (
RESET : string := "ACTIVE_HIGH";
DOMAIN : string := "default"
);
port (
clock_out : out std_logic;
clock : in std_logic := '0';
aclr_out : out std_logic;
aclr : in std_logic := '0';
aclr_n : in std_logic := '0'
);
end entity alt_dspbuilder_clock;
architecture rtl of alt_dspbuilder_clock is
component alt_dspbuilder_clock_GNQFU4PUDH is
generic (
RESET : string := "ACTIVE_HIGH";
DOMAIN : string := "default"
);
port (
aclr : in std_logic := '0';
aclr_out : out std_logic;
clock : in std_logic := '0';
clock_out : out std_logic
);
end component alt_dspbuilder_clock_GNQFU4PUDH;
begin
alt_dspbuilder_clock_GNQFU4PUDH_0: if ((RESET = "ACTIVE_HIGH") and (DOMAIN = "default")) generate
inst_alt_dspbuilder_clock_GNQFU4PUDH_0: alt_dspbuilder_clock_GNQFU4PUDH
generic map(RESET => "ACTIVE_HIGH", DOMAIN => "default")
port map(aclr => aclr, aclr_out => aclr_out, clock => clock, clock_out => clock_out);
end generate;
assert not (((RESET = "ACTIVE_HIGH") and (DOMAIN = "default")))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_port_GNXAOKDYKC.vhd | 4 | 487 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_port_GNXAOKDYKC is
port(
input : in std_logic_vector(0 downto 0);
output : out std_logic_vector(0 downto 0));
end entity;
architecture rtl of alt_dspbuilder_port_GNXAOKDYKC is
Begin
-- Straight Bypass block
output <= input;
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/Add_Frame_GN_Add_Frame_Add_Frame_Module.vhd | 2 | 59438 | -- Add_Frame_GN_Add_Frame_Add_Frame_Module.vhd
-- Generated using ACDS version 13.1 162 at 2015.02.25.10:37:27
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
entity Add_Frame_GN_Add_Frame_Add_Frame_Module is
port (
state : out std_logic_vector(2 downto 0); -- state.wire
writedata : in std_logic_vector(31 downto 0) := (others => '0'); -- writedata.wire
Add_Frame_Add_Frame_Module_CTRL_DECODER_decoder_col : out std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_CTRL_DECODER_decoder_col.wire
addr : in std_logic_vector(2 downto 0) := (others => '0'); -- addr.wire
data_in : in std_logic_vector(23 downto 0) := (others => '0'); -- data_in.wire
data_out : out std_logic_vector(23 downto 0); -- data_out.wire
Add_Frame_Add_Frame_Module_CTRL_DECODER_decoder_row : out std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_CTRL_DECODER_decoder_row.wire
col_counter : out std_logic_vector(15 downto 0); -- col_counter.wire
write : in std_logic := '0'; -- write.wire
frame_in : out std_logic_vector(0 downto 0); -- frame_in.wire
eop : in std_logic := '0'; -- eop.wire
sop : in std_logic := '0'; -- sop.wire
Clock : in std_logic := '0'; -- Clock.clk
aclr : in std_logic := '0'; -- .reset
valid : in std_logic := '0'; -- valid.wire
row_counter : out std_logic_vector(15 downto 0) -- row_counter.wire
);
end entity Add_Frame_GN_Add_Frame_Add_Frame_Module;
architecture rtl of Add_Frame_GN_Add_Frame_Add_Frame_Module is
component alt_dspbuilder_clock_GNQFU4PUDH is
port (
aclr : in std_logic := 'X'; -- reset
aclr_n : in std_logic := 'X'; -- reset_n
aclr_out : out std_logic; -- reset
clock : in std_logic := 'X'; -- clk
clock_out : out std_logic -- clk
);
end component alt_dspbuilder_clock_GNQFU4PUDH;
component alt_dspbuilder_pipelined_adder_GNWEIMU3MK is
generic (
width : natural := 0;
pipeline : integer := 0
);
port (
aclr : in std_logic := 'X'; -- clk
add_sub : in std_logic := 'X'; -- wire
cin : in std_logic := 'X'; -- wire
clock : in std_logic := 'X'; -- clk
cout : out std_logic; -- wire
dataa : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
datab : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
ena : in std_logic := 'X'; -- wire
result : out std_logic_vector(width-1 downto 0); -- wire
user_aclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_pipelined_adder_GNWEIMU3MK;
component alt_dspbuilder_gnd_GN is
port (
output : out std_logic -- wire
);
end component alt_dspbuilder_gnd_GN;
component alt_dspbuilder_vcc_GN is
port (
output : out std_logic -- wire
);
end component alt_dspbuilder_vcc_GN;
component alt_dspbuilder_port_GN37ALZBS4 is
port (
input : in std_logic := 'X'; -- wire
output : out std_logic -- wire
);
end component alt_dspbuilder_port_GN37ALZBS4;
component alt_dspbuilder_port_GNBO6OMO5Y is
port (
input : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_port_GNBO6OMO5Y;
component alt_dspbuilder_pipelined_adder_GN4HTUTWRG is
generic (
width : natural := 0;
pipeline : integer := 0
);
port (
aclr : in std_logic := 'X'; -- clk
add_sub : in std_logic := 'X'; -- wire
cin : in std_logic := 'X'; -- wire
clock : in std_logic := 'X'; -- clk
cout : out std_logic; -- wire
dataa : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
datab : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
ena : in std_logic := 'X'; -- wire
result : out std_logic_vector(width-1 downto 0); -- wire
user_aclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_pipelined_adder_GN4HTUTWRG;
component alt_dspbuilder_port_GNEPKLLZKY is
port (
input : in std_logic_vector(31 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(31 downto 0) -- wire
);
end component alt_dspbuilder_port_GNEPKLLZKY;
component alt_dspbuilder_port_GNS2GDLO5E is
port (
input : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(2 downto 0) -- wire
);
end component alt_dspbuilder_port_GNS2GDLO5E;
component alt_dspbuilder_constant_GNWFCSDEFM is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNWFCSDEFM;
component alt_dspbuilder_constant_GNI2J5SAO3 is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNI2J5SAO3;
component alt_dspbuilder_constant_GNZEH3JAKA is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNZEH3JAKA;
component alt_dspbuilder_constant_GN4GVGE46N is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_constant_GN4GVGE46N;
component alt_dspbuilder_constant_GNNKZSYI73 is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNNKZSYI73;
component alt_dspbuilder_if_statement_GNHRNNRV37 is
generic (
use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 1;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "a";
number_inputs : integer := 1;
width : natural := 8
);
port (
true : out std_logic; -- wire
a : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
b : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
c : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
d : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
e : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
f : in std_logic_vector(15 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_if_statement_GNHRNNRV37;
component Add_Frame_GN_Add_Frame_Add_Frame_Module_CTRL_DECODER is
port (
decoder_col : out std_logic_vector(15 downto 0); -- wire
decoder_row : out std_logic_vector(15 downto 0); -- wire
height : out std_logic_vector(15 downto 0); -- wire
data : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
sop : in std_logic := 'X'; -- wire
width : out std_logic_vector(15 downto 0); -- wire
Clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X' -- reset
);
end component Add_Frame_GN_Add_Frame_Add_Frame_Module_CTRL_DECODER;
component alt_dspbuilder_single_pulse_GN2XGKTRR3 is
generic (
delay : positive := 1;
signal_type : string := "Impulse";
impulse_width : positive := 1
);
port (
aclr : in std_logic := 'X'; -- clk
clock : in std_logic := 'X'; -- clk
ena : in std_logic := 'X'; -- wire
result : out std_logic; -- wire
sclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_single_pulse_GN2XGKTRR3;
component alt_dspbuilder_logical_bit_op_GNKUBZL4TE is
generic (
LogicalOp : string := "AltAND";
number_inputs : positive := 2
);
port (
result : out std_logic; -- wire
data0 : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_logical_bit_op_GNKUBZL4TE;
component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V is
generic (
LogicalOp : string := "AltAND";
number_inputs : positive := 2
);
port (
result : out std_logic; -- wire
data0 : in std_logic := 'X'; -- wire
data1 : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V;
component alt_dspbuilder_if_statement_GNUCFELPE2 is
generic (
use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 1;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "a";
number_inputs : integer := 1;
width : natural := 8
);
port (
true : out std_logic; -- wire
a : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
b : in std_logic_vector(15 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_if_statement_GNUCFELPE2;
component Add_Frame_GN_Add_Frame_Add_Frame_Module_Frame_Par is
port (
width : out std_logic_vector(15 downto 0); -- wire
write : in std_logic := 'X'; -- wire
writedata : in std_logic_vector(31 downto 0) := (others => 'X'); -- wire
addr : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
Clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X'; -- reset
sop : in std_logic := 'X'; -- wire
height : out std_logic_vector(15 downto 0); -- wire
vertex_col : out std_logic_vector(15 downto 0); -- wire
vertex_row : out std_logic_vector(15 downto 0); -- wire
data : in std_logic := 'X' -- wire
);
end component Add_Frame_GN_Add_Frame_Add_Frame_Module_Frame_Par;
component alt_dspbuilder_port_GNXAOKDYKC is
port (
input : in std_logic_vector(0 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(0 downto 0) -- wire
);
end component alt_dspbuilder_port_GNXAOKDYKC;
component alt_dspbuilder_counter_GNCXSYJEM5 is
generic (
use_usr_aclr : string := "false";
use_ena : string := "false";
use_cin : string := "false";
use_sset : string := "false";
ndirection : natural := 1;
svalue : string := "0";
use_sload : string := "false";
use_sclr : string := "false";
use_cout : string := "false";
modulus : integer := 256;
use_cnt_ena : string := "false";
width : natural := 8;
use_aset : string := "false";
use_aload : string := "false";
avalue : string := "0"
);
port (
aclr : in std_logic := 'X'; -- clk
aload : in std_logic := 'X'; -- wire
aset : in std_logic := 'X'; -- wire
cin : in std_logic := 'X'; -- wire
clock : in std_logic := 'X'; -- clk
cnt_ena : in std_logic := 'X'; -- wire
cout : out std_logic; -- wire
data : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
direction : in std_logic := 'X'; -- wire
ena : in std_logic := 'X'; -- wire
q : out std_logic_vector(width-1 downto 0); -- wire
sclr : in std_logic := 'X'; -- wire
sload : in std_logic := 'X'; -- wire
sset : in std_logic := 'X'; -- wire
user_aclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_counter_GNCXSYJEM5;
component alt_dspbuilder_delay_GNHYCSAEGT is
generic (
ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 0;
BitPattern : string := "00000001";
width : positive := 8
);
port (
aclr : in std_logic := 'X'; -- clk
clock : in std_logic := 'X'; -- clk
ena : in std_logic := 'X'; -- wire
input : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(width-1 downto 0); -- wire
sclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_delay_GNHYCSAEGT;
component FrameControl is
port (
clock : in std_logic := 'X'; -- clk
ctrl_in : in std_logic := 'X'; -- wire
data_in : in std_logic := 'X'; -- wire
frame_in : in std_logic := 'X'; -- wire
reset : in std_logic := 'X'; -- wire
state : out std_logic_vector(2 downto 0) -- wire
);
end component FrameControl;
component alt_dspbuilder_if_statement_GN7VA7SRUP is
generic (
use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 1;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "a";
number_inputs : integer := 1;
width : natural := 8
);
port (
true : out std_logic; -- wire
a : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
b : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
c : in std_logic_vector(23 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_if_statement_GN7VA7SRUP;
component alt_dspbuilder_multiplexer_GNRF25WCVA is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
use_one_hot_select_bus : natural := 0;
width : positive := 8;
pipeline : natural := 0;
number_inputs : natural := 4
);
port (
clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X'; -- reset
sel : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
result : out std_logic_vector(23 downto 0); -- wire
ena : in std_logic := 'X'; -- wire
user_aclr : in std_logic := 'X'; -- wire
in0 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in1 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in2 : in std_logic_vector(23 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_multiplexer_GNRF25WCVA;
component alt_dspbuilder_delay_GNUECIBFDH is
generic (
ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 0;
BitPattern : string := "00000001";
width : positive := 8
);
port (
aclr : in std_logic := 'X'; -- clk
clock : in std_logic := 'X'; -- clk
ena : in std_logic := 'X'; -- wire
input : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(width-1 downto 0); -- wire
sclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_delay_GNUECIBFDH;
component alt_dspbuilder_port_GNOC3SGKQJ is
port (
input : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_port_GNOC3SGKQJ;
component alt_dspbuilder_cast_GNSB3OXIQS is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(0 downto 0) := (others => 'X'); -- wire
output : out std_logic -- wire
);
end component alt_dspbuilder_cast_GNSB3OXIQS;
component alt_dspbuilder_cast_GN46N4UJ5S is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic := 'X'; -- wire
output : out std_logic_vector(0 downto 0) -- wire
);
end component alt_dspbuilder_cast_GN46N4UJ5S;
component alt_dspbuilder_cast_GNLWRZWTQF is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(2 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNLWRZWTQF;
component alt_dspbuilder_cast_GNOLJGN3IG is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(7 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNOLJGN3IG;
component alt_dspbuilder_cast_GNAQKAVKAT is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(7 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNAQKAVKAT;
component alt_dspbuilder_cast_GNQAP6WVUD is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(7 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNQAP6WVUD;
component alt_dspbuilder_cast_GNVFVRULJR is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(7 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNVFVRULJR;
component alt_dspbuilder_cast_GNYS2BYR3H is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic := 'X'; -- wire
output : out std_logic_vector(0 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNYS2BYR3H;
signal pipelined_adder3user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder3user_aclrGND:output -> Pipelined_Adder3:user_aclr
signal pipelined_adder3enavcc_output_wire : std_logic; -- Pipelined_Adder3enaVCC:output -> Pipelined_Adder3:ena
signal pipelined_adder1user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder1user_aclrGND:output -> Pipelined_Adder1:user_aclr
signal pipelined_adder1enavcc_output_wire : std_logic; -- Pipelined_Adder1enaVCC:output -> Pipelined_Adder1:ena
signal pipelined_adder2user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder2user_aclrGND:output -> Pipelined_Adder2:user_aclr
signal pipelined_adder2enavcc_output_wire : std_logic; -- Pipelined_Adder2enaVCC:output -> Pipelined_Adder2:ena
signal single_pulsesclrgnd_output_wire : std_logic; -- Single_PulsesclrGND:output -> Single_Pulse:sclr
signal single_pulseenavcc_output_wire : std_logic; -- Single_PulseenaVCC:output -> Single_Pulse:ena
signal pipelined_adderuser_aclrgnd_output_wire : std_logic; -- Pipelined_Adderuser_aclrGND:output -> Pipelined_Adder:user_aclr
signal pipelined_adderenavcc_output_wire : std_logic; -- Pipelined_AdderenaVCC:output -> Pipelined_Adder:ena
signal delay3sclrgnd_output_wire : std_logic; -- Delay3sclrGND:output -> Delay3:sclr
signal delay3enavcc_output_wire : std_logic; -- Delay3enaVCC:output -> Delay3:ena
signal multiplexer1user_aclrgnd_output_wire : std_logic; -- Multiplexer1user_aclrGND:output -> Multiplexer1:user_aclr
signal multiplexer1enavcc_output_wire : std_logic; -- Multiplexer1enaVCC:output -> Multiplexer1:ena
signal delay2sclrgnd_output_wire : std_logic; -- Delay2sclrGND:output -> Delay2:sclr
signal delay2enavcc_output_wire : std_logic; -- Delay2enaVCC:output -> Delay2:ena
signal sop_0_output_wire : std_logic; -- sop_0:output -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:sop, Add_Frame_Add_Frame_Module_Frame_Par_0:sop, Logical_Bit_Operator:data1]
signal delay3_output_wire : std_logic_vector(0 downto 0); -- Delay3:output -> [Delay1:input, cast228:input]
signal addr_0_output_wire : std_logic_vector(2 downto 0); -- addr_0:output -> Add_Frame_Add_Frame_Module_Frame_Par_0:addr
signal write_0_output_wire : std_logic; -- write_0:output -> Add_Frame_Add_Frame_Module_Frame_Par_0:write
signal writedata_0_output_wire : std_logic_vector(31 downto 0); -- writedata_0:output -> Add_Frame_Add_Frame_Module_Frame_Par_0:writedata
signal eop_0_output_wire : std_logic; -- eop_0:output -> [Add_Frame_Add_Frame_Module_Frame_Par_0:data, Logical_Bit_Operator2:data0]
signal counter_q_wire : std_logic_vector(15 downto 0); -- Counter:q -> [If_Statement2:b, If_Statement3:b, If_Statement:a, col_counter_0:input]
signal add_frame_add_frame_module_frame_par_0_vertex_col_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_Frame_Par_0:vertex_col -> [If_Statement:b, cast236:input]
signal counter1_q_wire : std_logic_vector(15 downto 0); -- Counter1:q -> [If_Statement4:b, If_Statement:d, row_counter_0:input]
signal add_frame_add_frame_module_frame_par_0_vertex_row_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_Frame_Par_0:vertex_row -> [If_Statement:e, cast239:input]
signal if_statement_true_wire : std_logic; -- If_Statement:true -> [Frame_Control:frame_in, cast247:input]
signal data_in_0_output_wire : std_logic_vector(23 downto 0); -- data_in_0:output -> [If_Statement1:a, Multiplexer1:in0, Multiplexer1:in1]
signal constant3_output_wire : std_logic_vector(23 downto 0); -- Constant3:output -> If_Statement1:b
signal constant4_output_wire : std_logic_vector(23 downto 0); -- Constant4:output -> If_Statement1:c
signal if_statement2_true_wire : std_logic; -- If_Statement2:true -> Counter1:cnt_ena
signal if_statement3_true_wire : std_logic; -- If_Statement3:true -> Counter:sclr
signal constant7_output_wire : std_logic_vector(15 downto 0); -- Constant7:output -> If_Statement4:a
signal if_statement4_true_wire : std_logic; -- If_Statement4:true -> Counter1:sclr
signal if_statement1_true_wire : std_logic; -- If_Statement1:true -> Logical_Bit_Operator:data0
signal valid_0_output_wire : std_logic; -- valid_0:output -> Logical_Bit_Operator1:data1
signal logical_bit_operator1_result_wire : std_logic; -- Logical_Bit_Operator1:result -> Counter:cnt_ena
signal logical_bit_operator3_result_wire : std_logic; -- Logical_Bit_Operator3:result -> Frame_Control:ctrl_in
signal constant2_output_wire : std_logic_vector(23 downto 0); -- Constant2:output -> Multiplexer1:in2
signal multiplexer1_result_wire : std_logic_vector(23 downto 0); -- Multiplexer1:result -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:data, data_out_0:input]
signal pipelined_adder3_result_wire : std_logic_vector(7 downto 0); -- Pipelined_Adder3:result -> [Pipelined_Adder2:dataa, cast246:input]
signal single_pulse_result_wire : std_logic; -- Single_Pulse:result -> Frame_Control:reset
signal frame_control_state_wire : std_logic_vector(2 downto 0); -- Frame_Control:state -> [cast235:input, state_0:input]
signal delay2_output_wire : std_logic_vector(0 downto 0); -- Delay2:output -> cast227:input
signal cast227_output_wire : std_logic; -- cast227:output -> Delay1:sclr
signal cast228_output_wire : std_logic; -- cast228:output -> Delay1:ena
signal delay1_output_wire : std_logic_vector(0 downto 0); -- Delay1:output -> [cast229:input, cast231:input, cast232:input, cast234:input]
signal cast229_output_wire : std_logic; -- cast229:output -> Frame_Control:data_in
signal logical_bit_operator_result_wire : std_logic; -- Logical_Bit_Operator:result -> cast230:input
signal cast230_output_wire : std_logic_vector(0 downto 0); -- cast230:output -> Delay3:input
signal cast231_output_wire : std_logic; -- cast231:output -> Logical_Bit_Operator1:data0
signal cast232_output_wire : std_logic; -- cast232:output -> Logical_Bit_Operator2:data1
signal logical_bit_operator2_result_wire : std_logic; -- Logical_Bit_Operator2:result -> cast233:input
signal cast233_output_wire : std_logic_vector(0 downto 0); -- cast233:output -> Delay2:input
signal cast234_output_wire : std_logic; -- cast234:output -> Logical_Bit_Operator3:data0
signal cast235_output_wire : std_logic_vector(2 downto 0); -- cast235:output -> Multiplexer1:sel
signal cast236_output_wire : std_logic_vector(7 downto 0); -- cast236:output -> Pipelined_Adder:dataa
signal add_frame_add_frame_module_frame_par_0_width_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_Frame_Par_0:width -> cast237:input
signal cast237_output_wire : std_logic_vector(7 downto 0); -- cast237:output -> Pipelined_Adder:datab
signal pipelined_adder_result_wire : std_logic_vector(7 downto 0); -- Pipelined_Adder:result -> cast238:input
signal cast238_output_wire : std_logic_vector(15 downto 0); -- cast238:output -> If_Statement:c
signal cast239_output_wire : std_logic_vector(7 downto 0); -- cast239:output -> Pipelined_Adder1:dataa
signal add_frame_add_frame_module_frame_par_0_height_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_Frame_Par_0:height -> cast240:input
signal cast240_output_wire : std_logic_vector(7 downto 0); -- cast240:output -> Pipelined_Adder1:datab
signal pipelined_adder1_result_wire : std_logic_vector(7 downto 0); -- Pipelined_Adder1:result -> cast241:input
signal cast241_output_wire : std_logic_vector(15 downto 0); -- cast241:output -> If_Statement:f
signal constant1_output_wire : std_logic_vector(15 downto 0); -- Constant1:output -> cast242:input
signal cast242_output_wire : std_logic_vector(7 downto 0); -- cast242:output -> Pipelined_Adder2:datab
signal pipelined_adder2_result_wire : std_logic_vector(7 downto 0); -- Pipelined_Adder2:result -> cast243:input
signal cast243_output_wire : std_logic_vector(15 downto 0); -- cast243:output -> If_Statement2:a
signal constant5_output_wire : std_logic_vector(15 downto 0); -- Constant5:output -> cast244:input
signal cast244_output_wire : std_logic_vector(7 downto 0); -- cast244:output -> Pipelined_Adder3:dataa
signal constant6_output_wire : std_logic_vector(15 downto 0); -- Constant6:output -> cast245:input
signal cast245_output_wire : std_logic_vector(7 downto 0); -- cast245:output -> Pipelined_Adder3:datab
signal cast246_output_wire : std_logic_vector(15 downto 0); -- cast246:output -> If_Statement3:a
signal cast247_output_wire : std_logic_vector(0 downto 0); -- cast247:output -> frame_in_0:input
signal clock_0_clock_output_reset : std_logic; -- Clock_0:aclr_out -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:aclr, Add_Frame_Add_Frame_Module_Frame_Par_0:aclr, Counter1:aclr, Counter:aclr, Delay1:aclr, Delay2:aclr, Delay3:aclr, Multiplexer1:aclr, Pipelined_Adder1:aclr, Pipelined_Adder2:aclr, Pipelined_Adder3:aclr, Pipelined_Adder:aclr, Single_Pulse:aclr]
signal clock_0_clock_output_clk : std_logic; -- Clock_0:clock_out -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:Clock, Add_Frame_Add_Frame_Module_Frame_Par_0:Clock, Counter1:clock, Counter:clock, Delay1:clock, Delay2:clock, Delay3:clock, Frame_Control:clock, Multiplexer1:clock, Pipelined_Adder1:clock, Pipelined_Adder2:clock, Pipelined_Adder3:clock, Pipelined_Adder:clock, Single_Pulse:clock]
begin
clock_0 : component alt_dspbuilder_clock_GNQFU4PUDH
port map (
clock_out => clock_0_clock_output_clk, -- clock_output.clk
aclr_out => clock_0_clock_output_reset, -- .reset
clock => Clock, -- clock.clk
aclr => aclr -- .reset
);
pipelined_adder3 : component alt_dspbuilder_pipelined_adder_GNWEIMU3MK
generic map (
width => 8,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => cast244_output_wire, -- dataa.wire
datab => cast245_output_wire, -- datab.wire
result => pipelined_adder3_result_wire, -- result.wire
user_aclr => pipelined_adder3user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder3enavcc_output_wire -- ena.wire
);
pipelined_adder3user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder3user_aclrgnd_output_wire -- output.wire
);
pipelined_adder3enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder3enavcc_output_wire -- output.wire
);
valid_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => valid, -- input.wire
output => valid_0_output_wire -- output.wire
);
row_counter_0 : component alt_dspbuilder_port_GNBO6OMO5Y
port map (
input => counter1_q_wire, -- input.wire
output => row_counter -- output.wire
);
pipelined_adder1 : component alt_dspbuilder_pipelined_adder_GN4HTUTWRG
generic map (
width => 8,
pipeline => 2
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => cast239_output_wire, -- dataa.wire
datab => cast240_output_wire, -- datab.wire
result => pipelined_adder1_result_wire, -- result.wire
user_aclr => pipelined_adder1user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder1enavcc_output_wire -- ena.wire
);
pipelined_adder1user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder1user_aclrgnd_output_wire -- output.wire
);
pipelined_adder1enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder1enavcc_output_wire -- output.wire
);
pipelined_adder2 : component alt_dspbuilder_pipelined_adder_GNWEIMU3MK
generic map (
width => 8,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => pipelined_adder3_result_wire, -- dataa.wire
datab => cast242_output_wire, -- datab.wire
result => pipelined_adder2_result_wire, -- result.wire
user_aclr => pipelined_adder2user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder2enavcc_output_wire -- ena.wire
);
pipelined_adder2user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder2user_aclrgnd_output_wire -- output.wire
);
pipelined_adder2enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder2enavcc_output_wire -- output.wire
);
writedata_0 : component alt_dspbuilder_port_GNEPKLLZKY
port map (
input => writedata, -- input.wire
output => writedata_0_output_wire -- output.wire
);
state_0 : component alt_dspbuilder_port_GNS2GDLO5E
port map (
input => frame_control_state_wire, -- input.wire
output => state -- output.wire
);
constant6 : component alt_dspbuilder_constant_GNWFCSDEFM
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000000000001",
width => 16
)
port map (
output => constant6_output_wire -- output.wire
);
constant7 : component alt_dspbuilder_constant_GNI2J5SAO3
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000011110000",
width => 16
)
port map (
output => constant7_output_wire -- output.wire
);
constant4 : component alt_dspbuilder_constant_GNZEH3JAKA
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000000001111",
width => 24
)
port map (
output => constant4_output_wire -- output.wire
);
addr_0 : component alt_dspbuilder_port_GNS2GDLO5E
port map (
input => addr, -- input.wire
output => addr_0_output_wire -- output.wire
);
constant5 : component alt_dspbuilder_constant_GN4GVGE46N
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000101000000",
width => 16
)
port map (
output => constant5_output_wire -- output.wire
);
constant3 : component alt_dspbuilder_constant_GNNKZSYI73
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000000000000",
width => 24
)
port map (
output => constant3_output_wire -- output.wire
);
constant2 : component alt_dspbuilder_constant_GNNKZSYI73
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000000000000",
width => 24
)
port map (
output => constant2_output_wire -- output.wire
);
if_statement : component alt_dspbuilder_if_statement_GNHRNNRV37
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(((a>b) or (a=b)) and ((a<c) or (a=c)) and (d=e)) or ((d>e) and (d<f) and (a=b)) or ((d>e) and (d<f) and (a=c)) or (((a>b) or (a=b)) and ((a<c) or (a=c)) and (d=f))",
number_inputs => 6,
width => 16
)
port map (
true => if_statement_true_wire, -- true.wire
a => counter_q_wire, -- a.wire
b => add_frame_add_frame_module_frame_par_0_vertex_col_wire, -- b.wire
c => cast238_output_wire, -- c.wire
d => counter1_q_wire, -- d.wire
e => add_frame_add_frame_module_frame_par_0_vertex_row_wire, -- e.wire
f => cast241_output_wire -- f.wire
);
constant1 : component alt_dspbuilder_constant_GNWFCSDEFM
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000000000001",
width => 16
)
port map (
output => constant1_output_wire -- output.wire
);
add_frame_add_frame_module_ctrl_decoder_0 : component Add_Frame_GN_Add_Frame_Add_Frame_Module_CTRL_DECODER
port map (
decoder_col => Add_Frame_Add_Frame_Module_CTRL_DECODER_decoder_col, -- decoder_col.wire
decoder_row => Add_Frame_Add_Frame_Module_CTRL_DECODER_decoder_row, -- decoder_row.wire
height => open, -- height.wire
data => multiplexer1_result_wire, -- data.wire
sop => sop_0_output_wire, -- sop.wire
width => open, -- width.wire
Clock => clock_0_clock_output_clk, -- Clock.clk
aclr => clock_0_clock_output_reset -- .reset
);
single_pulse : component alt_dspbuilder_single_pulse_GN2XGKTRR3
generic map (
delay => 1,
signal_type => "Step Down",
impulse_width => 1
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
result => single_pulse_result_wire, -- result.wire
sclr => single_pulsesclrgnd_output_wire, -- sclr.wire
ena => single_pulseenavcc_output_wire -- ena.wire
);
single_pulsesclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => single_pulsesclrgnd_output_wire -- output.wire
);
single_pulseenavcc : component alt_dspbuilder_vcc_GN
port map (
output => single_pulseenavcc_output_wire -- output.wire
);
write_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => write, -- input.wire
output => write_0_output_wire -- output.wire
);
logical_bit_operator3 : component alt_dspbuilder_logical_bit_op_GNKUBZL4TE
generic map (
LogicalOp => "AltNOT",
number_inputs => 1
)
port map (
result => logical_bit_operator3_result_wire, -- result.wire
data0 => cast234_output_wire -- data0.wire
);
logical_bit_operator2 : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator2_result_wire, -- result.wire
data0 => eop_0_output_wire, -- data0.wire
data1 => cast232_output_wire -- data1.wire
);
eop_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => eop, -- input.wire
output => eop_0_output_wire -- output.wire
);
logical_bit_operator1 : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator1_result_wire, -- result.wire
data0 => cast231_output_wire, -- data0.wire
data1 => valid_0_output_wire -- data1.wire
);
logical_bit_operator : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator_result_wire, -- result.wire
data0 => if_statement1_true_wire, -- data0.wire
data1 => sop_0_output_wire -- data1.wire
);
pipelined_adder : component alt_dspbuilder_pipelined_adder_GN4HTUTWRG
generic map (
width => 8,
pipeline => 2
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => cast236_output_wire, -- dataa.wire
datab => cast237_output_wire, -- datab.wire
result => pipelined_adder_result_wire, -- result.wire
user_aclr => pipelined_adderuser_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adderenavcc_output_wire -- ena.wire
);
pipelined_adderuser_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adderuser_aclrgnd_output_wire -- output.wire
);
pipelined_adderenavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adderenavcc_output_wire -- output.wire
);
if_statement4 : component alt_dspbuilder_if_statement_GNUCFELPE2
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b)",
number_inputs => 2,
width => 16
)
port map (
true => if_statement4_true_wire, -- true.wire
a => constant7_output_wire, -- a.wire
b => counter1_q_wire -- b.wire
);
add_frame_add_frame_module_frame_par_0 : component Add_Frame_GN_Add_Frame_Add_Frame_Module_Frame_Par
port map (
width => add_frame_add_frame_module_frame_par_0_width_wire, -- width.wire
write => write_0_output_wire, -- write.wire
writedata => writedata_0_output_wire, -- writedata.wire
addr => addr_0_output_wire, -- addr.wire
Clock => clock_0_clock_output_clk, -- Clock.clk
aclr => clock_0_clock_output_reset, -- .reset
sop => sop_0_output_wire, -- sop.wire
height => add_frame_add_frame_module_frame_par_0_height_wire, -- height.wire
vertex_col => add_frame_add_frame_module_frame_par_0_vertex_col_wire, -- vertex_col.wire
vertex_row => add_frame_add_frame_module_frame_par_0_vertex_row_wire, -- vertex_row.wire
data => eop_0_output_wire -- data.wire
);
frame_in_0 : component alt_dspbuilder_port_GNXAOKDYKC
port map (
input => cast247_output_wire, -- input.wire
output => frame_in -- output.wire
);
if_statement3 : component alt_dspbuilder_if_statement_GNUCFELPE2
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b)",
number_inputs => 2,
width => 16
)
port map (
true => if_statement3_true_wire, -- true.wire
a => cast246_output_wire, -- a.wire
b => counter_q_wire -- b.wire
);
counter : component alt_dspbuilder_counter_GNCXSYJEM5
generic map (
use_usr_aclr => "false",
use_ena => "false",
use_cin => "false",
use_sset => "false",
ndirection => 1,
svalue => "1",
use_sload => "false",
use_sclr => "true",
use_cout => "false",
modulus => -1,
use_cnt_ena => "true",
width => 16,
use_aset => "false",
use_aload => "false",
avalue => "0"
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
cnt_ena => logical_bit_operator1_result_wire, -- cnt_ena.wire
sclr => if_statement3_true_wire, -- sclr.wire
q => counter_q_wire, -- q.wire
cout => open -- cout.wire
);
if_statement2 : component alt_dspbuilder_if_statement_GNUCFELPE2
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b)",
number_inputs => 2,
width => 16
)
port map (
true => if_statement2_true_wire, -- true.wire
a => cast243_output_wire, -- a.wire
b => counter_q_wire -- b.wire
);
delay3 : component alt_dspbuilder_delay_GNHYCSAEGT
generic map (
ClockPhase => "1",
delay => 1,
use_init => 0,
BitPattern => "0",
width => 1
)
port map (
input => cast230_output_wire, -- input.wire
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
output => delay3_output_wire, -- output.wire
sclr => delay3sclrgnd_output_wire, -- sclr.wire
ena => delay3enavcc_output_wire -- ena.wire
);
delay3sclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => delay3sclrgnd_output_wire -- output.wire
);
delay3enavcc : component alt_dspbuilder_vcc_GN
port map (
output => delay3enavcc_output_wire -- output.wire
);
frame_control : component FrameControl
port map (
clock => clock_0_clock_output_clk, -- clock.clk
reset => single_pulse_result_wire, -- reset.wire
ctrl_in => logical_bit_operator3_result_wire, -- ctrl_in.wire
data_in => cast229_output_wire, -- data_in.wire
frame_in => if_statement_true_wire, -- frame_in.wire
state => frame_control_state_wire -- state.wire
);
if_statement1 : component alt_dspbuilder_if_statement_GN7VA7SRUP
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b) and (a /= c)",
number_inputs => 3,
width => 24
)
port map (
true => if_statement1_true_wire, -- true.wire
a => data_in_0_output_wire, -- a.wire
b => constant3_output_wire, -- b.wire
c => constant4_output_wire -- c.wire
);
sop_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => sop, -- input.wire
output => sop_0_output_wire -- output.wire
);
multiplexer1 : component alt_dspbuilder_multiplexer_GNRF25WCVA
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
use_one_hot_select_bus => 1,
width => 24,
pipeline => 0,
number_inputs => 3
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
sel => cast235_output_wire, -- sel.wire
result => multiplexer1_result_wire, -- result.wire
ena => multiplexer1enavcc_output_wire, -- ena.wire
user_aclr => multiplexer1user_aclrgnd_output_wire, -- user_aclr.wire
in0 => data_in_0_output_wire, -- in0.wire
in1 => data_in_0_output_wire, -- in1.wire
in2 => constant2_output_wire -- in2.wire
);
multiplexer1user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => multiplexer1user_aclrgnd_output_wire -- output.wire
);
multiplexer1enavcc : component alt_dspbuilder_vcc_GN
port map (
output => multiplexer1enavcc_output_wire -- output.wire
);
delay1 : component alt_dspbuilder_delay_GNUECIBFDH
generic map (
ClockPhase => "1",
delay => 1,
use_init => 1,
BitPattern => "0",
width => 1
)
port map (
input => delay3_output_wire, -- input.wire
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
output => delay1_output_wire, -- output.wire
sclr => cast227_output_wire, -- sclr.wire
ena => cast228_output_wire -- ena.wire
);
delay2 : component alt_dspbuilder_delay_GNHYCSAEGT
generic map (
ClockPhase => "1",
delay => 1,
use_init => 0,
BitPattern => "0",
width => 1
)
port map (
input => cast233_output_wire, -- input.wire
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
output => delay2_output_wire, -- output.wire
sclr => delay2sclrgnd_output_wire, -- sclr.wire
ena => delay2enavcc_output_wire -- ena.wire
);
delay2sclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => delay2sclrgnd_output_wire -- output.wire
);
delay2enavcc : component alt_dspbuilder_vcc_GN
port map (
output => delay2enavcc_output_wire -- output.wire
);
data_out_0 : component alt_dspbuilder_port_GNOC3SGKQJ
port map (
input => multiplexer1_result_wire, -- input.wire
output => data_out -- output.wire
);
data_in_0 : component alt_dspbuilder_port_GNOC3SGKQJ
port map (
input => data_in, -- input.wire
output => data_in_0_output_wire -- output.wire
);
counter1 : component alt_dspbuilder_counter_GNCXSYJEM5
generic map (
use_usr_aclr => "false",
use_ena => "false",
use_cin => "false",
use_sset => "false",
ndirection => 1,
svalue => "1",
use_sload => "false",
use_sclr => "true",
use_cout => "false",
modulus => -1,
use_cnt_ena => "true",
width => 16,
use_aset => "false",
use_aload => "false",
avalue => "0"
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
cnt_ena => if_statement2_true_wire, -- cnt_ena.wire
sclr => if_statement4_true_wire, -- sclr.wire
q => counter1_q_wire, -- q.wire
cout => open -- cout.wire
);
col_counter_0 : component alt_dspbuilder_port_GNBO6OMO5Y
port map (
input => counter_q_wire, -- input.wire
output => col_counter -- output.wire
);
cast227 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay2_output_wire, -- input.wire
output => cast227_output_wire -- output.wire
);
cast228 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay3_output_wire, -- input.wire
output => cast228_output_wire -- output.wire
);
cast229 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast229_output_wire -- output.wire
);
cast230 : component alt_dspbuilder_cast_GN46N4UJ5S
generic map (
round => 0,
saturate => 0
)
port map (
input => logical_bit_operator_result_wire, -- input.wire
output => cast230_output_wire -- output.wire
);
cast231 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast231_output_wire -- output.wire
);
cast232 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast232_output_wire -- output.wire
);
cast233 : component alt_dspbuilder_cast_GN46N4UJ5S
generic map (
round => 0,
saturate => 0
)
port map (
input => logical_bit_operator2_result_wire, -- input.wire
output => cast233_output_wire -- output.wire
);
cast234 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast234_output_wire -- output.wire
);
cast235 : component alt_dspbuilder_cast_GNLWRZWTQF
generic map (
round => 0,
saturate => 0
)
port map (
input => frame_control_state_wire, -- input.wire
output => cast235_output_wire -- output.wire
);
cast236 : component alt_dspbuilder_cast_GNOLJGN3IG
generic map (
round => 0,
saturate => 0
)
port map (
input => add_frame_add_frame_module_frame_par_0_vertex_col_wire, -- input.wire
output => cast236_output_wire -- output.wire
);
cast237 : component alt_dspbuilder_cast_GNOLJGN3IG
generic map (
round => 0,
saturate => 0
)
port map (
input => add_frame_add_frame_module_frame_par_0_width_wire, -- input.wire
output => cast237_output_wire -- output.wire
);
cast238 : component alt_dspbuilder_cast_GNAQKAVKAT
generic map (
round => 0,
saturate => 0
)
port map (
input => pipelined_adder_result_wire, -- input.wire
output => cast238_output_wire -- output.wire
);
cast239 : component alt_dspbuilder_cast_GNOLJGN3IG
generic map (
round => 0,
saturate => 0
)
port map (
input => add_frame_add_frame_module_frame_par_0_vertex_row_wire, -- input.wire
output => cast239_output_wire -- output.wire
);
cast240 : component alt_dspbuilder_cast_GNOLJGN3IG
generic map (
round => 0,
saturate => 0
)
port map (
input => add_frame_add_frame_module_frame_par_0_height_wire, -- input.wire
output => cast240_output_wire -- output.wire
);
cast241 : component alt_dspbuilder_cast_GNAQKAVKAT
generic map (
round => 0,
saturate => 0
)
port map (
input => pipelined_adder1_result_wire, -- input.wire
output => cast241_output_wire -- output.wire
);
cast242 : component alt_dspbuilder_cast_GNQAP6WVUD
generic map (
round => 0,
saturate => 0
)
port map (
input => constant1_output_wire, -- input.wire
output => cast242_output_wire -- output.wire
);
cast243 : component alt_dspbuilder_cast_GNVFVRULJR
generic map (
round => 0,
saturate => 0
)
port map (
input => pipelined_adder2_result_wire, -- input.wire
output => cast243_output_wire -- output.wire
);
cast244 : component alt_dspbuilder_cast_GNQAP6WVUD
generic map (
round => 0,
saturate => 0
)
port map (
input => constant5_output_wire, -- input.wire
output => cast244_output_wire -- output.wire
);
cast245 : component alt_dspbuilder_cast_GNQAP6WVUD
generic map (
round => 0,
saturate => 0
)
port map (
input => constant6_output_wire, -- input.wire
output => cast245_output_wire -- output.wire
);
cast246 : component alt_dspbuilder_cast_GNVFVRULJR
generic map (
round => 0,
saturate => 0
)
port map (
input => pipelined_adder3_result_wire, -- input.wire
output => cast246_output_wire -- output.wire
);
cast247 : component alt_dspbuilder_cast_GNYS2BYR3H
generic map (
round => 0,
saturate => 0
)
port map (
input => if_statement_true_wire, -- input.wire
output => cast247_output_wire -- output.wire
);
end architecture rtl; -- of Add_Frame_GN_Add_Frame_Add_Frame_Module
| mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_counter.vhd | 2 | 5550 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_counter is
generic (
USE_USR_ACLR : string := "false";
USE_ENA : string := "false";
USE_CIN : string := "false";
USE_SSET : string := "false";
NDIRECTION : natural := 1;
SVALUE : string := "0";
USE_SLOAD : string := "false";
USE_SCLR : string := "false";
USE_COUT : string := "false";
MODULUS : integer := 256;
USE_CNT_ENA : string := "false";
WIDTH : natural := 8;
USE_ASET : string := "false";
USE_ALOAD : string := "false";
AVALUE : string := "0"
);
port (
user_aclr : in std_logic := '0';
clock : in std_logic := '0';
q : out std_logic_vector(width-1 downto 0);
direction : in std_logic := '0';
sclr : in std_logic := '0';
data : in std_logic_vector(width-1 downto 0) := (others=>'0');
aset : in std_logic := '0';
cout : out std_logic;
sset : in std_logic := '0';
aclr : in std_logic := '0';
cnt_ena : in std_logic := '0';
cin : in std_logic := '0';
ena : in std_logic := '0';
aload : in std_logic := '0';
sload : in std_logic := '0'
);
end entity alt_dspbuilder_counter;
architecture rtl of alt_dspbuilder_counter is
component alt_dspbuilder_counter_GNCXSYJEM5 is
generic (
USE_USR_ACLR : string := "false";
USE_ENA : string := "false";
USE_CIN : string := "false";
USE_SSET : string := "false";
NDIRECTION : natural := 1;
SVALUE : string := "1";
USE_SLOAD : string := "false";
USE_SCLR : string := "true";
USE_COUT : string := "false";
MODULUS : integer := -1;
USE_CNT_ENA : string := "true";
WIDTH : natural := 16;
USE_ASET : string := "false";
USE_ALOAD : string := "false";
AVALUE : string := "0"
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
cnt_ena : in std_logic := '0';
cout : out std_logic;
q : out std_logic_vector(16-1 downto 0);
sclr : in std_logic := '0'
);
end component alt_dspbuilder_counter_GNCXSYJEM5;
component alt_dspbuilder_counter_GNW5IG44CT is
generic (
USE_USR_ACLR : string := "false";
USE_ENA : string := "false";
USE_CIN : string := "false";
USE_SSET : string := "false";
NDIRECTION : natural := 1;
SVALUE : string := "1";
USE_SLOAD : string := "false";
USE_SCLR : string := "true";
USE_COUT : string := "false";
MODULUS : integer := -1;
USE_CNT_ENA : string := "true";
WIDTH : natural := 3;
USE_ASET : string := "false";
USE_ALOAD : string := "false";
AVALUE : string := "0"
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
cnt_ena : in std_logic := '0';
cout : out std_logic;
q : out std_logic_vector(3-1 downto 0);
sclr : in std_logic := '0'
);
end component alt_dspbuilder_counter_GNW5IG44CT;
begin
alt_dspbuilder_counter_GNCXSYJEM5_0: if ((USE_USR_ACLR = "false") and (USE_ENA = "false") and (USE_CIN = "false") and (USE_SSET = "false") and (NDIRECTION = 1) and (SVALUE = "1") and (USE_SLOAD = "false") and (USE_SCLR = "true") and (USE_COUT = "false") and (MODULUS = -1) and (USE_CNT_ENA = "true") and (WIDTH = 16) and (USE_ASET = "false") and (USE_ALOAD = "false") and (AVALUE = "0")) generate
inst_alt_dspbuilder_counter_GNCXSYJEM5_0: alt_dspbuilder_counter_GNCXSYJEM5
generic map(USE_USR_ACLR => "false", USE_ENA => "false", USE_CIN => "false", USE_SSET => "false", NDIRECTION => 1, SVALUE => "1", USE_SLOAD => "false", USE_SCLR => "true", USE_COUT => "false", MODULUS => -1, USE_CNT_ENA => "true", WIDTH => 16, USE_ASET => "false", USE_ALOAD => "false", AVALUE => "0")
port map(aclr => aclr, clock => clock, cnt_ena => cnt_ena, cout => cout, q => q, sclr => sclr);
end generate;
alt_dspbuilder_counter_GNW5IG44CT_1: if ((USE_USR_ACLR = "false") and (USE_ENA = "false") and (USE_CIN = "false") and (USE_SSET = "false") and (NDIRECTION = 1) and (SVALUE = "1") and (USE_SLOAD = "false") and (USE_SCLR = "true") and (USE_COUT = "false") and (MODULUS = -1) and (USE_CNT_ENA = "true") and (WIDTH = 3) and (USE_ASET = "false") and (USE_ALOAD = "false") and (AVALUE = "0")) generate
inst_alt_dspbuilder_counter_GNW5IG44CT_1: alt_dspbuilder_counter_GNW5IG44CT
generic map(USE_USR_ACLR => "false", USE_ENA => "false", USE_CIN => "false", USE_SSET => "false", NDIRECTION => 1, SVALUE => "1", USE_SLOAD => "false", USE_SCLR => "true", USE_COUT => "false", MODULUS => -1, USE_CNT_ENA => "true", WIDTH => 3, USE_ASET => "false", USE_ALOAD => "false", AVALUE => "0")
port map(aclr => aclr, clock => clock, cnt_ena => cnt_ena, cout => cout, q => q, sclr => sclr);
end generate;
assert not (((USE_USR_ACLR = "false") and (USE_ENA = "false") and (USE_CIN = "false") and (USE_SSET = "false") and (NDIRECTION = 1) and (SVALUE = "1") and (USE_SLOAD = "false") and (USE_SCLR = "true") and (USE_COUT = "false") and (MODULUS = -1) and (USE_CNT_ENA = "true") and (WIDTH = 16) and (USE_ASET = "false") and (USE_ALOAD = "false") and (AVALUE = "0")) or ((USE_USR_ACLR = "false") and (USE_ENA = "false") and (USE_CIN = "false") and (USE_SSET = "false") and (NDIRECTION = 1) and (SVALUE = "1") and (USE_SLOAD = "false") and (USE_SCLR = "true") and (USE_COUT = "false") and (MODULUS = -1) and (USE_CNT_ENA = "true") and (WIDTH = 3) and (USE_ASET = "false") and (USE_ALOAD = "false") and (AVALUE = "0")))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/hdl/alt_dspbuilder_cast_GNYS2BYR3H.vhd | 3 | 842 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_cast_GNYS2BYR3H is
generic ( round : natural := 0;
saturate : natural := 0);
port(
input : in std_logic;
output : out std_logic_vector(0 downto 0));
end entity;
architecture rtl of alt_dspbuilder_cast_GNYS2BYR3H is
Begin
-- Output - I/O assignment from Simulink Block "Output"
Outputi : alt_dspbuilder_SBF generic map(
width_inl=> 1 + 1 ,
width_inr=> 0,
width_outl=> 1,
width_outr=> 0,
lpm_signed=> BusIsSigned ,
round=> round,
satur=> saturate)
port map (
xin(0) => input,
xin(1) => '0', yout => output
);
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_decoder.vhd | 1 | 4986 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_decoder is
generic (
DECODE : string := "00000000";
PIPELINE : natural := 0;
WIDTH : natural := 8
);
port (
dec : out std_logic;
clock : in std_logic := '0';
sclr : in std_logic := '0';
data : in std_logic_vector(width-1 downto 0) := (others=>'0');
aclr : in std_logic := '0';
ena : in std_logic := '0'
);
end entity alt_dspbuilder_decoder;
architecture rtl of alt_dspbuilder_decoder is
component alt_dspbuilder_decoder_GNSCEXJCJK is
generic (
DECODE : string := "000000000000000000001111";
PIPELINE : natural := 0;
WIDTH : natural := 24
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
data : in std_logic_vector(24-1 downto 0) := (others=>'0');
dec : out std_logic;
ena : in std_logic := '0';
sclr : in std_logic := '0'
);
end component alt_dspbuilder_decoder_GNSCEXJCJK;
component alt_dspbuilder_decoder_GNBHXAVAPH is
generic (
DECODE : string := "010";
PIPELINE : natural := 1;
WIDTH : natural := 3
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
data : in std_logic_vector(3-1 downto 0) := (others=>'0');
dec : out std_logic;
ena : in std_logic := '0';
sclr : in std_logic := '0'
);
end component alt_dspbuilder_decoder_GNBHXAVAPH;
component alt_dspbuilder_decoder_GNQPHUITBS is
generic (
DECODE : string := "001";
PIPELINE : natural := 1;
WIDTH : natural := 3
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
data : in std_logic_vector(3-1 downto 0) := (others=>'0');
dec : out std_logic;
ena : in std_logic := '0';
sclr : in std_logic := '0'
);
end component alt_dspbuilder_decoder_GNQPHUITBS;
component alt_dspbuilder_decoder_GN7W55JURN is
generic (
DECODE : string := "100";
PIPELINE : natural := 1;
WIDTH : natural := 3
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
data : in std_logic_vector(3-1 downto 0) := (others=>'0');
dec : out std_logic;
ena : in std_logic := '0';
sclr : in std_logic := '0'
);
end component alt_dspbuilder_decoder_GN7W55JURN;
component alt_dspbuilder_decoder_GNBT6YIKS3 is
generic (
DECODE : string := "011";
PIPELINE : natural := 1;
WIDTH : natural := 3
);
port (
aclr : in std_logic := '0';
clock : in std_logic := '0';
data : in std_logic_vector(3-1 downto 0) := (others=>'0');
dec : out std_logic;
ena : in std_logic := '0';
sclr : in std_logic := '0'
);
end component alt_dspbuilder_decoder_GNBT6YIKS3;
begin
alt_dspbuilder_decoder_GNSCEXJCJK_0: if ((DECODE = "000000000000000000001111") and (PIPELINE = 0) and (WIDTH = 24)) generate
inst_alt_dspbuilder_decoder_GNSCEXJCJK_0: alt_dspbuilder_decoder_GNSCEXJCJK
generic map(DECODE => "000000000000000000001111", PIPELINE => 0, WIDTH => 24)
port map(aclr => aclr, clock => clock, data => data, dec => dec, ena => ena, sclr => sclr);
end generate;
alt_dspbuilder_decoder_GNBHXAVAPH_1: if ((DECODE = "010") and (PIPELINE = 1) and (WIDTH = 3)) generate
inst_alt_dspbuilder_decoder_GNBHXAVAPH_1: alt_dspbuilder_decoder_GNBHXAVAPH
generic map(DECODE => "010", PIPELINE => 1, WIDTH => 3)
port map(aclr => aclr, clock => clock, data => data, dec => dec, ena => ena, sclr => sclr);
end generate;
alt_dspbuilder_decoder_GNQPHUITBS_2: if ((DECODE = "001") and (PIPELINE = 1) and (WIDTH = 3)) generate
inst_alt_dspbuilder_decoder_GNQPHUITBS_2: alt_dspbuilder_decoder_GNQPHUITBS
generic map(DECODE => "001", PIPELINE => 1, WIDTH => 3)
port map(aclr => aclr, clock => clock, data => data, dec => dec, ena => ena, sclr => sclr);
end generate;
alt_dspbuilder_decoder_GN7W55JURN_3: if ((DECODE = "100") and (PIPELINE = 1) and (WIDTH = 3)) generate
inst_alt_dspbuilder_decoder_GN7W55JURN_3: alt_dspbuilder_decoder_GN7W55JURN
generic map(DECODE => "100", PIPELINE => 1, WIDTH => 3)
port map(aclr => aclr, clock => clock, data => data, dec => dec, ena => ena, sclr => sclr);
end generate;
alt_dspbuilder_decoder_GNBT6YIKS3_4: if ((DECODE = "011") and (PIPELINE = 1) and (WIDTH = 3)) generate
inst_alt_dspbuilder_decoder_GNBT6YIKS3_4: alt_dspbuilder_decoder_GNBT6YIKS3
generic map(DECODE => "011", PIPELINE => 1, WIDTH => 3)
port map(aclr => aclr, clock => clock, data => data, dec => dec, ena => ena, sclr => sclr);
end generate;
assert not (((DECODE = "000000000000000000001111") and (PIPELINE = 0) and (WIDTH = 24)) or ((DECODE = "010") and (PIPELINE = 1) and (WIDTH = 3)) or ((DECODE = "001") and (PIPELINE = 1) and (WIDTH = 3)) or ((DECODE = "100") and (PIPELINE = 1) and (WIDTH = 3)) or ((DECODE = "011") and (PIPELINE = 1) and (WIDTH = 3)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_bus_concat_GNBH75ZTOD.vhd | 4 | 653 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_bus_concat_GNBH75ZTOD is
generic ( widthB : natural := 4;
widthA : natural := 8);
port(
a : in std_logic_vector((widthA)-1 downto 0);
aclr : in std_logic;
b : in std_logic_vector((widthB)-1 downto 0);
clock : in std_logic;
output : out std_logic_vector((widthA+widthB)-1 downto 0));
end entity;
architecture rtl of alt_dspbuilder_bus_concat_GNBH75ZTOD is
Begin
output <= a & b;
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/Add_Frame_GN_Add_Frame_Add_Frame_Module.vhd | 2 | 62676 | -- Add_Frame_GN_Add_Frame_Add_Frame_Module.vhd
-- Generated using ACDS version 13.1 162 at 2015.02.27.11:15:10
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
entity Add_Frame_GN_Add_Frame_Add_Frame_Module is
port (
data_out : out std_logic_vector(23 downto 0); -- data_out.wire
addr : in std_logic_vector(2 downto 0) := (others => '0'); -- addr.wire
write : in std_logic := '0'; -- write.wire
writedata : in std_logic_vector(31 downto 0) := (others => '0'); -- writedata.wire
Clock : in std_logic := '0'; -- Clock.clk
aclr : in std_logic := '0'; -- .reset
sop : in std_logic := '0'; -- sop.wire
eop : in std_logic := '0'; -- eop.wire
valid : in std_logic := '0'; -- valid.wire
data_in : in std_logic_vector(23 downto 0) := (others => '0') -- data_in.wire
);
end entity Add_Frame_GN_Add_Frame_Add_Frame_Module;
architecture rtl of Add_Frame_GN_Add_Frame_Add_Frame_Module is
component alt_dspbuilder_clock_GNQFU4PUDH is
port (
aclr : in std_logic := 'X'; -- reset
aclr_n : in std_logic := 'X'; -- reset_n
aclr_out : out std_logic; -- reset
clock : in std_logic := 'X'; -- clk
clock_out : out std_logic -- clk
);
end component alt_dspbuilder_clock_GNQFU4PUDH;
component alt_dspbuilder_pipelined_adder_GNWEIMU3MK is
generic (
width : natural := 0;
pipeline : integer := 0
);
port (
aclr : in std_logic := 'X'; -- clk
add_sub : in std_logic := 'X'; -- wire
cin : in std_logic := 'X'; -- wire
clock : in std_logic := 'X'; -- clk
cout : out std_logic; -- wire
dataa : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
datab : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
ena : in std_logic := 'X'; -- wire
result : out std_logic_vector(width-1 downto 0); -- wire
user_aclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_pipelined_adder_GNWEIMU3MK;
component alt_dspbuilder_gnd_GN is
port (
output : out std_logic -- wire
);
end component alt_dspbuilder_gnd_GN;
component alt_dspbuilder_vcc_GN is
port (
output : out std_logic -- wire
);
end component alt_dspbuilder_vcc_GN;
component alt_dspbuilder_port_GN37ALZBS4 is
port (
input : in std_logic := 'X'; -- wire
output : out std_logic -- wire
);
end component alt_dspbuilder_port_GN37ALZBS4;
component alt_dspbuilder_pipelined_adder_GNTWZRTG4I is
generic (
width : natural := 0;
pipeline : integer := 0
);
port (
aclr : in std_logic := 'X'; -- clk
add_sub : in std_logic := 'X'; -- wire
cin : in std_logic := 'X'; -- wire
clock : in std_logic := 'X'; -- clk
cout : out std_logic; -- wire
dataa : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
datab : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
ena : in std_logic := 'X'; -- wire
result : out std_logic_vector(width-1 downto 0); -- wire
user_aclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_pipelined_adder_GNTWZRTG4I;
component alt_dspbuilder_port_GNEPKLLZKY is
port (
input : in std_logic_vector(31 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(31 downto 0) -- wire
);
end component alt_dspbuilder_port_GNEPKLLZKY;
component alt_dspbuilder_constant_GNWFCSDEFM is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(15 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNWFCSDEFM;
component alt_dspbuilder_constant_GNLMV7GZFA is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNLMV7GZFA;
component alt_dspbuilder_port_GNS2GDLO5E is
port (
input : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(2 downto 0) -- wire
);
end component alt_dspbuilder_port_GNS2GDLO5E;
component alt_dspbuilder_constant_GNZEH3JAKA is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNZEH3JAKA;
component alt_dspbuilder_constant_GNNKZSYI73 is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNNKZSYI73;
component alt_dspbuilder_constant_GNGITJD4MB is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNGITJD4MB;
component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V is
generic (
LogicalOp : string := "AltAND";
number_inputs : positive := 2
);
port (
result : out std_logic; -- wire
data0 : in std_logic := 'X'; -- wire
data1 : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V;
component alt_dspbuilder_logical_bit_op_GN5A3KLAEC is
generic (
LogicalOp : string := "AltAND";
number_inputs : positive := 2
);
port (
result : out std_logic; -- wire
data0 : in std_logic := 'X'; -- wire
data1 : in std_logic := 'X'; -- wire
data2 : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_logical_bit_op_GN5A3KLAEC;
component alt_dspbuilder_logical_bit_op_GNKUBZL4TE is
generic (
LogicalOp : string := "AltAND";
number_inputs : positive := 2
);
port (
result : out std_logic; -- wire
data0 : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_logical_bit_op_GNKUBZL4TE;
component alt_dspbuilder_logical_bit_op_GNUQ2R64DV is
generic (
LogicalOp : string := "AltAND";
number_inputs : positive := 2
);
port (
result : out std_logic; -- wire
data0 : in std_logic := 'X'; -- wire
data1 : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_logical_bit_op_GNUQ2R64DV;
component alt_dspbuilder_constant_GNNTMI25OE is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNNTMI25OE;
component alt_dspbuilder_constant_GNIJTURCWG is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
BitPattern : string := "0000";
width : natural := 4
);
port (
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_constant_GNIJTURCWG;
component alt_dspbuilder_if_statement_GNHRNNRV37 is
generic (
use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 1;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "a";
number_inputs : integer := 1;
width : natural := 8
);
port (
true : out std_logic; -- wire
a : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
b : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
c : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
d : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
e : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
f : in std_logic_vector(15 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_if_statement_GNHRNNRV37;
component Add_Frame_GN_Add_Frame_Add_Frame_Module_FRAME_PARAMETER is
port (
writedata : in std_logic_vector(31 downto 0) := (others => 'X'); -- wire
data : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
height : out std_logic_vector(15 downto 0); -- wire
Clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X'; -- reset
write : in std_logic := 'X'; -- wire
width : out std_logic_vector(15 downto 0); -- wire
sop : in std_logic := 'X'; -- wire
enble : out std_logic_vector(0 downto 0); -- wire
addr : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
color : out std_logic_vector(2 downto 0); -- wire
vertex_col : out std_logic_vector(15 downto 0); -- wire
vertex_row : out std_logic_vector(15 downto 0) -- wire
);
end component Add_Frame_GN_Add_Frame_Add_Frame_Module_FRAME_PARAMETER;
component Add_Frame_GN_Add_Frame_Add_Frame_Module_CTRL_DECODER is
port (
height : out std_logic_vector(15 downto 0); -- wire
width : out std_logic_vector(15 downto 0); -- wire
sop : in std_logic := 'X'; -- wire
Clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X'; -- reset
data : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
valid : in std_logic := 'X' -- wire
);
end component Add_Frame_GN_Add_Frame_Add_Frame_Module_CTRL_DECODER;
component alt_dspbuilder_single_pulse_GN2XGKTRR3 is
generic (
delay : positive := 1;
signal_type : string := "Impulse";
impulse_width : positive := 1
);
port (
aclr : in std_logic := 'X'; -- clk
clock : in std_logic := 'X'; -- clk
ena : in std_logic := 'X'; -- wire
result : out std_logic; -- wire
sclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_single_pulse_GN2XGKTRR3;
component alt_dspbuilder_if_statement_GNUCFELPE2 is
generic (
use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 1;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "a";
number_inputs : integer := 1;
width : natural := 8
);
port (
true : out std_logic; -- wire
a : in std_logic_vector(15 downto 0) := (others => 'X'); -- wire
b : in std_logic_vector(15 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_if_statement_GNUCFELPE2;
component alt_dspbuilder_counter_GNCXSYJEM5 is
generic (
use_usr_aclr : string := "false";
use_ena : string := "false";
use_cin : string := "false";
use_sset : string := "false";
ndirection : natural := 1;
svalue : string := "0";
use_sload : string := "false";
use_sclr : string := "false";
use_cout : string := "false";
modulus : integer := 256;
use_cnt_ena : string := "false";
width : natural := 8;
use_aset : string := "false";
use_aload : string := "false";
avalue : string := "0"
);
port (
aclr : in std_logic := 'X'; -- clk
aload : in std_logic := 'X'; -- wire
aset : in std_logic := 'X'; -- wire
cin : in std_logic := 'X'; -- wire
clock : in std_logic := 'X'; -- clk
cnt_ena : in std_logic := 'X'; -- wire
cout : out std_logic; -- wire
data : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
direction : in std_logic := 'X'; -- wire
ena : in std_logic := 'X'; -- wire
q : out std_logic_vector(width-1 downto 0); -- wire
sclr : in std_logic := 'X'; -- wire
sload : in std_logic := 'X'; -- wire
sset : in std_logic := 'X'; -- wire
user_aclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_counter_GNCXSYJEM5;
component alt_dspbuilder_if_statement_GN7VA7SRUP is
generic (
use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 1;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "a";
number_inputs : integer := 1;
width : natural := 8
);
port (
true : out std_logic; -- wire
a : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
b : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
c : in std_logic_vector(23 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_if_statement_GN7VA7SRUP;
component FrameControl is
port (
clock : in std_logic := 'X'; -- clk
ctrl_in : in std_logic := 'X'; -- wire
data_in : in std_logic := 'X'; -- wire
frame_in : in std_logic := 'X'; -- wire
reset : in std_logic := 'X'; -- wire
state : out std_logic_vector(2 downto 0) -- wire
);
end component FrameControl;
component alt_dspbuilder_delay_GNHYCSAEGT is
generic (
ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 0;
BitPattern : string := "00000001";
width : positive := 8
);
port (
aclr : in std_logic := 'X'; -- clk
clock : in std_logic := 'X'; -- clk
ena : in std_logic := 'X'; -- wire
input : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(width-1 downto 0); -- wire
sclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_delay_GNHYCSAEGT;
component alt_dspbuilder_multiplexer_GNRF25WCVA is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
use_one_hot_select_bus : natural := 0;
width : positive := 8;
pipeline : natural := 0;
number_inputs : natural := 4
);
port (
clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X'; -- reset
sel : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
result : out std_logic_vector(23 downto 0); -- wire
ena : in std_logic := 'X'; -- wire
user_aclr : in std_logic := 'X'; -- wire
in0 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in1 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in2 : in std_logic_vector(23 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_multiplexer_GNRF25WCVA;
component alt_dspbuilder_delay_GNUECIBFDH is
generic (
ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 0;
BitPattern : string := "00000001";
width : positive := 8
);
port (
aclr : in std_logic := 'X'; -- clk
clock : in std_logic := 'X'; -- clk
ena : in std_logic := 'X'; -- wire
input : in std_logic_vector(width-1 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(width-1 downto 0); -- wire
sclr : in std_logic := 'X' -- wire
);
end component alt_dspbuilder_delay_GNUECIBFDH;
component alt_dspbuilder_multiplexer_GNHHROOGAI is
generic (
HDLTYPE : string := "STD_LOGIC_VECTOR";
use_one_hot_select_bus : natural := 0;
width : positive := 8;
pipeline : natural := 0;
number_inputs : natural := 4
);
port (
clock : in std_logic := 'X'; -- clk
aclr : in std_logic := 'X'; -- reset
sel : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
result : out std_logic_vector(23 downto 0); -- wire
ena : in std_logic := 'X'; -- wire
user_aclr : in std_logic := 'X'; -- wire
in0 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in1 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in2 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in3 : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
in4 : in std_logic_vector(23 downto 0) := (others => 'X') -- wire
);
end component alt_dspbuilder_multiplexer_GNHHROOGAI;
component alt_dspbuilder_port_GNOC3SGKQJ is
port (
input : in std_logic_vector(23 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(23 downto 0) -- wire
);
end component alt_dspbuilder_port_GNOC3SGKQJ;
component alt_dspbuilder_cast_GNSB3OXIQS is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(0 downto 0) := (others => 'X'); -- wire
output : out std_logic -- wire
);
end component alt_dspbuilder_cast_GNSB3OXIQS;
component alt_dspbuilder_cast_GN46N4UJ5S is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic := 'X'; -- wire
output : out std_logic_vector(0 downto 0) -- wire
);
end component alt_dspbuilder_cast_GN46N4UJ5S;
component alt_dspbuilder_cast_GNLWRZWTQF is
generic (
round : natural := 0;
saturate : natural := 0
);
port (
input : in std_logic_vector(2 downto 0) := (others => 'X'); -- wire
output : out std_logic_vector(2 downto 0) -- wire
);
end component alt_dspbuilder_cast_GNLWRZWTQF;
signal pipelined_adder3user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder3user_aclrGND:output -> Pipelined_Adder3:user_aclr
signal pipelined_adder3enavcc_output_wire : std_logic; -- Pipelined_Adder3enaVCC:output -> Pipelined_Adder3:ena
signal pipelined_adder4user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder4user_aclrGND:output -> Pipelined_Adder4:user_aclr
signal pipelined_adder4enavcc_output_wire : std_logic; -- Pipelined_Adder4enaVCC:output -> Pipelined_Adder4:ena
signal pipelined_adder1user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder1user_aclrGND:output -> Pipelined_Adder1:user_aclr
signal pipelined_adder1enavcc_output_wire : std_logic; -- Pipelined_Adder1enaVCC:output -> Pipelined_Adder1:ena
signal pipelined_adder2user_aclrgnd_output_wire : std_logic; -- Pipelined_Adder2user_aclrGND:output -> Pipelined_Adder2:user_aclr
signal pipelined_adder2enavcc_output_wire : std_logic; -- Pipelined_Adder2enaVCC:output -> Pipelined_Adder2:ena
signal single_pulsesclrgnd_output_wire : std_logic; -- Single_PulsesclrGND:output -> Single_Pulse:sclr
signal single_pulseenavcc_output_wire : std_logic; -- Single_PulseenaVCC:output -> Single_Pulse:ena
signal pipelined_adderuser_aclrgnd_output_wire : std_logic; -- Pipelined_Adderuser_aclrGND:output -> Pipelined_Adder:user_aclr
signal pipelined_adderenavcc_output_wire : std_logic; -- Pipelined_AdderenaVCC:output -> Pipelined_Adder:ena
signal delay3sclrgnd_output_wire : std_logic; -- Delay3sclrGND:output -> Delay3:sclr
signal delay3enavcc_output_wire : std_logic; -- Delay3enaVCC:output -> Delay3:ena
signal multiplexer1user_aclrgnd_output_wire : std_logic; -- Multiplexer1user_aclrGND:output -> Multiplexer1:user_aclr
signal multiplexer1enavcc_output_wire : std_logic; -- Multiplexer1enaVCC:output -> Multiplexer1:ena
signal multiplexer2user_aclrgnd_output_wire : std_logic; -- Multiplexer2user_aclrGND:output -> Multiplexer2:user_aclr
signal multiplexer2enavcc_output_wire : std_logic; -- Multiplexer2enaVCC:output -> Multiplexer2:ena
signal delay2sclrgnd_output_wire : std_logic; -- Delay2sclrGND:output -> Delay2:sclr
signal delay2enavcc_output_wire : std_logic; -- Delay2enaVCC:output -> Delay2:ena
signal sop_0_output_wire : std_logic; -- sop_0:output -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:sop, Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:sop, Logical_Bit_Operator:data1]
signal valid_0_output_wire : std_logic; -- valid_0:output -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:valid, Logical_Bit_Operator1:data1, Logical_Bit_Operator6:data2]
signal delay3_output_wire : std_logic_vector(0 downto 0); -- Delay3:output -> [Delay1:input, cast10:input]
signal addr_0_output_wire : std_logic_vector(2 downto 0); -- addr_0:output -> Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:addr
signal write_0_output_wire : std_logic; -- write_0:output -> Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:write
signal writedata_0_output_wire : std_logic_vector(31 downto 0); -- writedata_0:output -> Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:writedata
signal data_in_0_output_wire : std_logic_vector(23 downto 0); -- data_in_0:output -> [Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:data, If_Statement1:a, Multiplexer1:in0, Multiplexer1:in1]
signal counter_q_wire : std_logic_vector(15 downto 0); -- Counter:q -> [If_Statement2:b, If_Statement3:b, If_Statement:a]
signal add_frame_add_frame_module_frame_parameter_0_vertex_col_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:vertex_col -> [If_Statement:b, Pipelined_Adder:dataa]
signal counter1_q_wire : std_logic_vector(15 downto 0); -- Counter1:q -> [If_Statement4:b, If_Statement:d]
signal add_frame_add_frame_module_frame_parameter_0_vertex_row_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:vertex_row -> [If_Statement:e, Pipelined_Adder1:dataa]
signal constant3_output_wire : std_logic_vector(23 downto 0); -- Constant3:output -> If_Statement1:b
signal constant4_output_wire : std_logic_vector(23 downto 0); -- Constant4:output -> If_Statement1:c
signal if_statement1_true_wire : std_logic; -- If_Statement1:true -> Logical_Bit_Operator:data0
signal logical_bit_operator1_result_wire : std_logic; -- Logical_Bit_Operator1:result -> Counter:cnt_ena
signal eop_0_output_wire : std_logic; -- eop_0:output -> Logical_Bit_Operator2:data0
signal logical_bit_operator3_result_wire : std_logic; -- Logical_Bit_Operator3:result -> Frame_Control:ctrl_in
signal if_statement4_true_wire : std_logic; -- If_Statement4:true -> Logical_Bit_Operator4:data0
signal if_statement3_true_wire : std_logic; -- If_Statement3:true -> Logical_Bit_Operator4:data1
signal logical_bit_operator4_result_wire : std_logic; -- Logical_Bit_Operator4:result -> Counter:sclr
signal logical_bit_operator5_result_wire : std_logic; -- Logical_Bit_Operator5:result -> Counter1:sclr
signal if_statement2_true_wire : std_logic; -- If_Statement2:true -> Logical_Bit_Operator6:data1
signal logical_bit_operator6_result_wire : std_logic; -- Logical_Bit_Operator6:result -> Counter1:cnt_ena
signal if_statement_true_wire : std_logic; -- If_Statement:true -> Logical_Bit_Operator7:data1
signal logical_bit_operator7_result_wire : std_logic; -- Logical_Bit_Operator7:result -> Frame_Control:frame_in
signal multiplexer1_result_wire : std_logic_vector(23 downto 0); -- Multiplexer1:result -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:data, data_out_0:input]
signal add_frame_add_frame_module_frame_parameter_0_color_wire : std_logic_vector(2 downto 0); -- Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:color -> Multiplexer2:sel
signal constant5_output_wire : std_logic_vector(23 downto 0); -- Constant5:output -> Multiplexer2:in0
signal constant7_output_wire : std_logic_vector(23 downto 0); -- Constant7:output -> Multiplexer2:in1
signal constant9_output_wire : std_logic_vector(23 downto 0); -- Constant9:output -> Multiplexer2:in2
signal constant10_output_wire : std_logic_vector(23 downto 0); -- Constant10:output -> Multiplexer2:in3
signal constant11_output_wire : std_logic_vector(23 downto 0); -- Constant11:output -> Multiplexer2:in4
signal multiplexer2_result_wire : std_logic_vector(23 downto 0); -- Multiplexer2:result -> Multiplexer1:in2
signal add_frame_add_frame_module_frame_parameter_0_width_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:width -> Pipelined_Adder:datab
signal pipelined_adder_result_wire : std_logic_vector(15 downto 0); -- Pipelined_Adder:result -> If_Statement:c
signal add_frame_add_frame_module_frame_parameter_0_height_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:height -> Pipelined_Adder1:datab
signal pipelined_adder1_result_wire : std_logic_vector(15 downto 0); -- Pipelined_Adder1:result -> If_Statement:f
signal constant1_output_wire : std_logic_vector(15 downto 0); -- Constant1:output -> Pipelined_Adder2:datab
signal pipelined_adder2_result_wire : std_logic_vector(15 downto 0); -- Pipelined_Adder2:result -> If_Statement2:a
signal add_frame_add_frame_module_ctrl_decoder_0_width_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_CTRL_DECODER_0:width -> Pipelined_Adder3:dataa
signal constant6_output_wire : std_logic_vector(15 downto 0); -- Constant6:output -> Pipelined_Adder3:datab
signal pipelined_adder3_result_wire : std_logic_vector(15 downto 0); -- Pipelined_Adder3:result -> [If_Statement3:a, Pipelined_Adder2:dataa]
signal add_frame_add_frame_module_ctrl_decoder_0_height_wire : std_logic_vector(15 downto 0); -- Add_Frame_Add_Frame_Module_CTRL_DECODER_0:height -> Pipelined_Adder4:dataa
signal constant8_output_wire : std_logic_vector(15 downto 0); -- Constant8:output -> Pipelined_Adder4:datab
signal pipelined_adder4_result_wire : std_logic_vector(15 downto 0); -- Pipelined_Adder4:result -> If_Statement4:a
signal single_pulse_result_wire : std_logic; -- Single_Pulse:result -> Frame_Control:reset
signal delay2_output_wire : std_logic_vector(0 downto 0); -- Delay2:output -> cast9:input
signal cast9_output_wire : std_logic; -- cast9:output -> Delay1:sclr
signal cast10_output_wire : std_logic; -- cast10:output -> Delay1:ena
signal delay1_output_wire : std_logic_vector(0 downto 0); -- Delay1:output -> [cast11:input, cast13:input, cast14:input, cast16:input, cast17:input, cast18:input]
signal cast11_output_wire : std_logic; -- cast11:output -> Frame_Control:data_in
signal logical_bit_operator_result_wire : std_logic; -- Logical_Bit_Operator:result -> cast12:input
signal cast12_output_wire : std_logic_vector(0 downto 0); -- cast12:output -> Delay3:input
signal cast13_output_wire : std_logic; -- cast13:output -> Logical_Bit_Operator1:data0
signal cast14_output_wire : std_logic; -- cast14:output -> Logical_Bit_Operator2:data1
signal logical_bit_operator2_result_wire : std_logic; -- Logical_Bit_Operator2:result -> cast15:input
signal cast15_output_wire : std_logic_vector(0 downto 0); -- cast15:output -> Delay2:input
signal cast16_output_wire : std_logic; -- cast16:output -> Logical_Bit_Operator3:data0
signal cast17_output_wire : std_logic; -- cast17:output -> Logical_Bit_Operator5:data0
signal cast18_output_wire : std_logic; -- cast18:output -> Logical_Bit_Operator6:data0
signal add_frame_add_frame_module_frame_parameter_0_enble_wire : std_logic_vector(0 downto 0); -- Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:enble -> cast19:input
signal cast19_output_wire : std_logic; -- cast19:output -> Logical_Bit_Operator7:data0
signal frame_control_state_wire : std_logic_vector(2 downto 0); -- Frame_Control:state -> cast20:input
signal cast20_output_wire : std_logic_vector(2 downto 0); -- cast20:output -> Multiplexer1:sel
signal clock_0_clock_output_reset : std_logic; -- Clock_0:aclr_out -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:aclr, Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:aclr, Counter1:aclr, Counter:aclr, Delay1:aclr, Delay2:aclr, Delay3:aclr, Multiplexer1:aclr, Multiplexer2:aclr, Pipelined_Adder1:aclr, Pipelined_Adder2:aclr, Pipelined_Adder3:aclr, Pipelined_Adder4:aclr, Pipelined_Adder:aclr, Single_Pulse:aclr]
signal clock_0_clock_output_clk : std_logic; -- Clock_0:clock_out -> [Add_Frame_Add_Frame_Module_CTRL_DECODER_0:Clock, Add_Frame_Add_Frame_Module_FRAME_PARAMETER_0:Clock, Counter1:clock, Counter:clock, Delay1:clock, Delay2:clock, Delay3:clock, Frame_Control:clock, Multiplexer1:clock, Multiplexer2:clock, Pipelined_Adder1:clock, Pipelined_Adder2:clock, Pipelined_Adder3:clock, Pipelined_Adder4:clock, Pipelined_Adder:clock, Single_Pulse:clock]
begin
clock_0 : component alt_dspbuilder_clock_GNQFU4PUDH
port map (
clock_out => clock_0_clock_output_clk, -- clock_output.clk
aclr_out => clock_0_clock_output_reset, -- .reset
clock => Clock, -- clock.clk
aclr => aclr -- .reset
);
pipelined_adder3 : component alt_dspbuilder_pipelined_adder_GNWEIMU3MK
generic map (
width => 16,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => add_frame_add_frame_module_ctrl_decoder_0_width_wire, -- dataa.wire
datab => constant6_output_wire, -- datab.wire
result => pipelined_adder3_result_wire, -- result.wire
user_aclr => pipelined_adder3user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder3enavcc_output_wire -- ena.wire
);
pipelined_adder3user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder3user_aclrgnd_output_wire -- output.wire
);
pipelined_adder3enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder3enavcc_output_wire -- output.wire
);
pipelined_adder4 : component alt_dspbuilder_pipelined_adder_GNWEIMU3MK
generic map (
width => 16,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => add_frame_add_frame_module_ctrl_decoder_0_height_wire, -- dataa.wire
datab => constant8_output_wire, -- datab.wire
result => pipelined_adder4_result_wire, -- result.wire
user_aclr => pipelined_adder4user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder4enavcc_output_wire -- ena.wire
);
pipelined_adder4user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder4user_aclrgnd_output_wire -- output.wire
);
pipelined_adder4enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder4enavcc_output_wire -- output.wire
);
valid_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => valid, -- input.wire
output => valid_0_output_wire -- output.wire
);
pipelined_adder1 : component alt_dspbuilder_pipelined_adder_GNTWZRTG4I
generic map (
width => 16,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => add_frame_add_frame_module_frame_parameter_0_vertex_row_wire, -- dataa.wire
datab => add_frame_add_frame_module_frame_parameter_0_height_wire, -- datab.wire
result => pipelined_adder1_result_wire, -- result.wire
user_aclr => pipelined_adder1user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder1enavcc_output_wire -- ena.wire
);
pipelined_adder1user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder1user_aclrgnd_output_wire -- output.wire
);
pipelined_adder1enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder1enavcc_output_wire -- output.wire
);
pipelined_adder2 : component alt_dspbuilder_pipelined_adder_GNWEIMU3MK
generic map (
width => 16,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => pipelined_adder3_result_wire, -- dataa.wire
datab => constant1_output_wire, -- datab.wire
result => pipelined_adder2_result_wire, -- result.wire
user_aclr => pipelined_adder2user_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adder2enavcc_output_wire -- ena.wire
);
pipelined_adder2user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adder2user_aclrgnd_output_wire -- output.wire
);
pipelined_adder2enavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adder2enavcc_output_wire -- output.wire
);
writedata_0 : component alt_dspbuilder_port_GNEPKLLZKY
port map (
input => writedata, -- input.wire
output => writedata_0_output_wire -- output.wire
);
constant6 : component alt_dspbuilder_constant_GNWFCSDEFM
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000000000001",
width => 16
)
port map (
output => constant6_output_wire -- output.wire
);
constant7 : component alt_dspbuilder_constant_GNLMV7GZFA
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "111111111111111111111111",
width => 24
)
port map (
output => constant7_output_wire -- output.wire
);
addr_0 : component alt_dspbuilder_port_GNS2GDLO5E
port map (
input => addr, -- input.wire
output => addr_0_output_wire -- output.wire
);
constant4 : component alt_dspbuilder_constant_GNZEH3JAKA
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000000001111",
width => 24
)
port map (
output => constant4_output_wire -- output.wire
);
constant5 : component alt_dspbuilder_constant_GNNKZSYI73
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000000000000",
width => 24
)
port map (
output => constant5_output_wire -- output.wire
);
constant8 : component alt_dspbuilder_constant_GNWFCSDEFM
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000000000001",
width => 16
)
port map (
output => constant8_output_wire -- output.wire
);
constant9 : component alt_dspbuilder_constant_GNGITJD4MB
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000011111111",
width => 24
)
port map (
output => constant9_output_wire -- output.wire
);
logical_bit_operator7 : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator7_result_wire, -- result.wire
data0 => cast19_output_wire, -- data0.wire
data1 => if_statement_true_wire -- data1.wire
);
logical_bit_operator6 : component alt_dspbuilder_logical_bit_op_GN5A3KLAEC
generic map (
LogicalOp => "AltAND",
number_inputs => 3
)
port map (
result => logical_bit_operator6_result_wire, -- result.wire
data0 => cast18_output_wire, -- data0.wire
data1 => if_statement2_true_wire, -- data1.wire
data2 => valid_0_output_wire -- data2.wire
);
logical_bit_operator5 : component alt_dspbuilder_logical_bit_op_GNKUBZL4TE
generic map (
LogicalOp => "AltNOT",
number_inputs => 1
)
port map (
result => logical_bit_operator5_result_wire, -- result.wire
data0 => cast17_output_wire -- data0.wire
);
logical_bit_operator4 : component alt_dspbuilder_logical_bit_op_GNUQ2R64DV
generic map (
LogicalOp => "AltOR",
number_inputs => 2
)
port map (
result => logical_bit_operator4_result_wire, -- result.wire
data0 => if_statement4_true_wire, -- data0.wire
data1 => if_statement3_true_wire -- data1.wire
);
constant10 : component alt_dspbuilder_constant_GNNTMI25OE
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000001111111100000000",
width => 24
)
port map (
output => constant10_output_wire -- output.wire
);
constant3 : component alt_dspbuilder_constant_GNNKZSYI73
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "000000000000000000000000",
width => 24
)
port map (
output => constant3_output_wire -- output.wire
);
constant11 : component alt_dspbuilder_constant_GNIJTURCWG
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "111111110000000000000000",
width => 24
)
port map (
output => constant11_output_wire -- output.wire
);
if_statement : component alt_dspbuilder_if_statement_GNHRNNRV37
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(((a>b) or (a=b)) and ((a<c) or (a=c)) and (d=e)) or ((d>e) and (d<f) and (a=b)) or ((d>e) and (d<f) and (a=c)) or (((a>b) or (a=b)) and ((a<c) or (a=c)) and (d=f))",
number_inputs => 6,
width => 16
)
port map (
true => if_statement_true_wire, -- true.wire
a => counter_q_wire, -- a.wire
b => add_frame_add_frame_module_frame_parameter_0_vertex_col_wire, -- b.wire
c => pipelined_adder_result_wire, -- c.wire
d => counter1_q_wire, -- d.wire
e => add_frame_add_frame_module_frame_parameter_0_vertex_row_wire, -- e.wire
f => pipelined_adder1_result_wire -- f.wire
);
constant1 : component alt_dspbuilder_constant_GNWFCSDEFM
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
BitPattern => "0000000000000001",
width => 16
)
port map (
output => constant1_output_wire -- output.wire
);
add_frame_add_frame_module_frame_parameter_0 : component Add_Frame_GN_Add_Frame_Add_Frame_Module_FRAME_PARAMETER
port map (
writedata => writedata_0_output_wire, -- writedata.wire
data => data_in_0_output_wire, -- data.wire
height => add_frame_add_frame_module_frame_parameter_0_height_wire, -- height.wire
Clock => clock_0_clock_output_clk, -- Clock.clk
aclr => clock_0_clock_output_reset, -- .reset
write => write_0_output_wire, -- write.wire
width => add_frame_add_frame_module_frame_parameter_0_width_wire, -- width.wire
sop => sop_0_output_wire, -- sop.wire
enble => add_frame_add_frame_module_frame_parameter_0_enble_wire, -- enble.wire
addr => addr_0_output_wire, -- addr.wire
color => add_frame_add_frame_module_frame_parameter_0_color_wire, -- color.wire
vertex_col => add_frame_add_frame_module_frame_parameter_0_vertex_col_wire, -- vertex_col.wire
vertex_row => add_frame_add_frame_module_frame_parameter_0_vertex_row_wire -- vertex_row.wire
);
add_frame_add_frame_module_ctrl_decoder_0 : component Add_Frame_GN_Add_Frame_Add_Frame_Module_CTRL_DECODER
port map (
height => add_frame_add_frame_module_ctrl_decoder_0_height_wire, -- height.wire
width => add_frame_add_frame_module_ctrl_decoder_0_width_wire, -- width.wire
sop => sop_0_output_wire, -- sop.wire
Clock => clock_0_clock_output_clk, -- Clock.clk
aclr => clock_0_clock_output_reset, -- .reset
data => multiplexer1_result_wire, -- data.wire
valid => valid_0_output_wire -- valid.wire
);
single_pulse : component alt_dspbuilder_single_pulse_GN2XGKTRR3
generic map (
delay => 1,
signal_type => "Step Down",
impulse_width => 1
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
result => single_pulse_result_wire, -- result.wire
sclr => single_pulsesclrgnd_output_wire, -- sclr.wire
ena => single_pulseenavcc_output_wire -- ena.wire
);
single_pulsesclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => single_pulsesclrgnd_output_wire -- output.wire
);
single_pulseenavcc : component alt_dspbuilder_vcc_GN
port map (
output => single_pulseenavcc_output_wire -- output.wire
);
write_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => write, -- input.wire
output => write_0_output_wire -- output.wire
);
logical_bit_operator3 : component alt_dspbuilder_logical_bit_op_GNKUBZL4TE
generic map (
LogicalOp => "AltNOT",
number_inputs => 1
)
port map (
result => logical_bit_operator3_result_wire, -- result.wire
data0 => cast16_output_wire -- data0.wire
);
logical_bit_operator2 : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator2_result_wire, -- result.wire
data0 => eop_0_output_wire, -- data0.wire
data1 => cast14_output_wire -- data1.wire
);
eop_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => eop, -- input.wire
output => eop_0_output_wire -- output.wire
);
logical_bit_operator1 : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator1_result_wire, -- result.wire
data0 => cast13_output_wire, -- data0.wire
data1 => valid_0_output_wire -- data1.wire
);
logical_bit_operator : component alt_dspbuilder_logical_bit_op_GNA5ZFEL7V
generic map (
LogicalOp => "AltAND",
number_inputs => 2
)
port map (
result => logical_bit_operator_result_wire, -- result.wire
data0 => if_statement1_true_wire, -- data0.wire
data1 => sop_0_output_wire -- data1.wire
);
pipelined_adder : component alt_dspbuilder_pipelined_adder_GNTWZRTG4I
generic map (
width => 16,
pipeline => 0
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
dataa => add_frame_add_frame_module_frame_parameter_0_vertex_col_wire, -- dataa.wire
datab => add_frame_add_frame_module_frame_parameter_0_width_wire, -- datab.wire
result => pipelined_adder_result_wire, -- result.wire
user_aclr => pipelined_adderuser_aclrgnd_output_wire, -- user_aclr.wire
ena => pipelined_adderenavcc_output_wire -- ena.wire
);
pipelined_adderuser_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => pipelined_adderuser_aclrgnd_output_wire -- output.wire
);
pipelined_adderenavcc : component alt_dspbuilder_vcc_GN
port map (
output => pipelined_adderenavcc_output_wire -- output.wire
);
if_statement4 : component alt_dspbuilder_if_statement_GNUCFELPE2
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b)",
number_inputs => 2,
width => 16
)
port map (
true => if_statement4_true_wire, -- true.wire
a => pipelined_adder4_result_wire, -- a.wire
b => counter1_q_wire -- b.wire
);
if_statement3 : component alt_dspbuilder_if_statement_GNUCFELPE2
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b)",
number_inputs => 2,
width => 16
)
port map (
true => if_statement3_true_wire, -- true.wire
a => pipelined_adder3_result_wire, -- a.wire
b => counter_q_wire -- b.wire
);
counter : component alt_dspbuilder_counter_GNCXSYJEM5
generic map (
use_usr_aclr => "false",
use_ena => "false",
use_cin => "false",
use_sset => "false",
ndirection => 1,
svalue => "1",
use_sload => "false",
use_sclr => "true",
use_cout => "false",
modulus => -1,
use_cnt_ena => "true",
width => 16,
use_aset => "false",
use_aload => "false",
avalue => "0"
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
cnt_ena => logical_bit_operator1_result_wire, -- cnt_ena.wire
sclr => logical_bit_operator4_result_wire, -- sclr.wire
q => counter_q_wire, -- q.wire
cout => open -- cout.wire
);
if_statement2 : component alt_dspbuilder_if_statement_GNUCFELPE2
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b)",
number_inputs => 2,
width => 16
)
port map (
true => if_statement2_true_wire, -- true.wire
a => pipelined_adder2_result_wire, -- a.wire
b => counter_q_wire -- b.wire
);
if_statement1 : component alt_dspbuilder_if_statement_GN7VA7SRUP
generic map (
use_else_output => 0,
bwr => 0,
use_else_input => 0,
signed => 0,
HDLTYPE => "STD_LOGIC_VECTOR",
if_expression => "(a=b) and (a /= c)",
number_inputs => 3,
width => 24
)
port map (
true => if_statement1_true_wire, -- true.wire
a => data_in_0_output_wire, -- a.wire
b => constant3_output_wire, -- b.wire
c => constant4_output_wire -- c.wire
);
frame_control : component FrameControl
port map (
clock => clock_0_clock_output_clk, -- clock.clk
reset => single_pulse_result_wire, -- reset.wire
ctrl_in => logical_bit_operator3_result_wire, -- ctrl_in.wire
data_in => cast11_output_wire, -- data_in.wire
frame_in => logical_bit_operator7_result_wire, -- frame_in.wire
state => frame_control_state_wire -- state.wire
);
delay3 : component alt_dspbuilder_delay_GNHYCSAEGT
generic map (
ClockPhase => "1",
delay => 1,
use_init => 0,
BitPattern => "0",
width => 1
)
port map (
input => cast12_output_wire, -- input.wire
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
output => delay3_output_wire, -- output.wire
sclr => delay3sclrgnd_output_wire, -- sclr.wire
ena => delay3enavcc_output_wire -- ena.wire
);
delay3sclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => delay3sclrgnd_output_wire -- output.wire
);
delay3enavcc : component alt_dspbuilder_vcc_GN
port map (
output => delay3enavcc_output_wire -- output.wire
);
sop_0 : component alt_dspbuilder_port_GN37ALZBS4
port map (
input => sop, -- input.wire
output => sop_0_output_wire -- output.wire
);
multiplexer1 : component alt_dspbuilder_multiplexer_GNRF25WCVA
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
use_one_hot_select_bus => 1,
width => 24,
pipeline => 0,
number_inputs => 3
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
sel => cast20_output_wire, -- sel.wire
result => multiplexer1_result_wire, -- result.wire
ena => multiplexer1enavcc_output_wire, -- ena.wire
user_aclr => multiplexer1user_aclrgnd_output_wire, -- user_aclr.wire
in0 => data_in_0_output_wire, -- in0.wire
in1 => data_in_0_output_wire, -- in1.wire
in2 => multiplexer2_result_wire -- in2.wire
);
multiplexer1user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => multiplexer1user_aclrgnd_output_wire -- output.wire
);
multiplexer1enavcc : component alt_dspbuilder_vcc_GN
port map (
output => multiplexer1enavcc_output_wire -- output.wire
);
delay1 : component alt_dspbuilder_delay_GNUECIBFDH
generic map (
ClockPhase => "1",
delay => 1,
use_init => 1,
BitPattern => "0",
width => 1
)
port map (
input => delay3_output_wire, -- input.wire
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
output => delay1_output_wire, -- output.wire
sclr => cast9_output_wire, -- sclr.wire
ena => cast10_output_wire -- ena.wire
);
multiplexer2 : component alt_dspbuilder_multiplexer_GNHHROOGAI
generic map (
HDLTYPE => "STD_LOGIC_VECTOR",
use_one_hot_select_bus => 0,
width => 24,
pipeline => 0,
number_inputs => 5
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
sel => add_frame_add_frame_module_frame_parameter_0_color_wire, -- sel.wire
result => multiplexer2_result_wire, -- result.wire
ena => multiplexer2enavcc_output_wire, -- ena.wire
user_aclr => multiplexer2user_aclrgnd_output_wire, -- user_aclr.wire
in0 => constant5_output_wire, -- in0.wire
in1 => constant7_output_wire, -- in1.wire
in2 => constant9_output_wire, -- in2.wire
in3 => constant10_output_wire, -- in3.wire
in4 => constant11_output_wire -- in4.wire
);
multiplexer2user_aclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => multiplexer2user_aclrgnd_output_wire -- output.wire
);
multiplexer2enavcc : component alt_dspbuilder_vcc_GN
port map (
output => multiplexer2enavcc_output_wire -- output.wire
);
delay2 : component alt_dspbuilder_delay_GNHYCSAEGT
generic map (
ClockPhase => "1",
delay => 1,
use_init => 0,
BitPattern => "0",
width => 1
)
port map (
input => cast15_output_wire, -- input.wire
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
output => delay2_output_wire, -- output.wire
sclr => delay2sclrgnd_output_wire, -- sclr.wire
ena => delay2enavcc_output_wire -- ena.wire
);
delay2sclrgnd : component alt_dspbuilder_gnd_GN
port map (
output => delay2sclrgnd_output_wire -- output.wire
);
delay2enavcc : component alt_dspbuilder_vcc_GN
port map (
output => delay2enavcc_output_wire -- output.wire
);
data_out_0 : component alt_dspbuilder_port_GNOC3SGKQJ
port map (
input => multiplexer1_result_wire, -- input.wire
output => data_out -- output.wire
);
data_in_0 : component alt_dspbuilder_port_GNOC3SGKQJ
port map (
input => data_in, -- input.wire
output => data_in_0_output_wire -- output.wire
);
counter1 : component alt_dspbuilder_counter_GNCXSYJEM5
generic map (
use_usr_aclr => "false",
use_ena => "false",
use_cin => "false",
use_sset => "false",
ndirection => 1,
svalue => "1",
use_sload => "false",
use_sclr => "true",
use_cout => "false",
modulus => -1,
use_cnt_ena => "true",
width => 16,
use_aset => "false",
use_aload => "false",
avalue => "0"
)
port map (
clock => clock_0_clock_output_clk, -- clock_aclr.clk
aclr => clock_0_clock_output_reset, -- .reset
cnt_ena => logical_bit_operator6_result_wire, -- cnt_ena.wire
sclr => logical_bit_operator5_result_wire, -- sclr.wire
q => counter1_q_wire, -- q.wire
cout => open -- cout.wire
);
cast9 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay2_output_wire, -- input.wire
output => cast9_output_wire -- output.wire
);
cast10 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay3_output_wire, -- input.wire
output => cast10_output_wire -- output.wire
);
cast11 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast11_output_wire -- output.wire
);
cast12 : component alt_dspbuilder_cast_GN46N4UJ5S
generic map (
round => 0,
saturate => 0
)
port map (
input => logical_bit_operator_result_wire, -- input.wire
output => cast12_output_wire -- output.wire
);
cast13 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast13_output_wire -- output.wire
);
cast14 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast14_output_wire -- output.wire
);
cast15 : component alt_dspbuilder_cast_GN46N4UJ5S
generic map (
round => 0,
saturate => 0
)
port map (
input => logical_bit_operator2_result_wire, -- input.wire
output => cast15_output_wire -- output.wire
);
cast16 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast16_output_wire -- output.wire
);
cast17 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast17_output_wire -- output.wire
);
cast18 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => delay1_output_wire, -- input.wire
output => cast18_output_wire -- output.wire
);
cast19 : component alt_dspbuilder_cast_GNSB3OXIQS
generic map (
round => 0,
saturate => 0
)
port map (
input => add_frame_add_frame_module_frame_parameter_0_enble_wire, -- input.wire
output => cast19_output_wire -- output.wire
);
cast20 : component alt_dspbuilder_cast_GNLWRZWTQF
generic map (
round => 0,
saturate => 0
)
port map (
input => frame_control_state_wire, -- input.wire
output => cast20_output_wire -- output.wire
);
end architecture rtl; -- of Add_Frame_GN_Add_Frame_Add_Frame_Module
| mit |
lsangild/DSD | Exercise3/Concatenation/shift_div.vhd | 1 | 754 | ----- LIBRARIES -----
LIBRARY ieee;
use ieee.std_logic_1164.all;
USE ieee.numeric_std.all;
entity shift_div is
port ( SW : in std_logic_vector(7 downto 0);
LEDR : out std_logic_vector(4 downto 0)
);
end shift_div;
architecture shift of shift_div is
begin
--process(SW)
-- begin
-- if(SW(5) = '1')then --Shift once to the left
-- LEDR(4 downto 0) <= std_logic_vector(SW(3 downto 0) & '0');
-- elsif(SW(6) = '1')then --Shift twice to the right
-- LEDR(4 downto 0) <= std_logic_vector("00" & SW(4 downto 2));
-- elsif(SW(7) = '1')then --Rotate thrice to the right
LEDR(4 downto 0) <= SW(2) & SW(1) & SW(0) & SW(4) & SW(3);
-- else --Show original input
-- LEDR(4 downto 0) <= SW(4 downto 0);
-- end if;
--end process;
end shift; | mit |
lsangild/DSD | Exercise3/Four_bit_adder/full_adder.vhd | 1 | 602 | -----------------------Implementation of a Full adder ---------------
-------------- Library statements -------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
-- Entity declaration full_adder--
entity full_adder is
port (FAa, FAb, FAcin : in std_logic;
FAsum, FAcout : out std_logic;
FAc1, FAc2, s1 : buffer std_logic
);
end full_adder;
architecture FA of full_adder is
begin
h1: entity work.half_adder_dataflow port map(a=>FAa,b=>FAb,sum=>s1,carry=>FAc1);
h2: entity work.half_adder_dataflow port map(a=>s1,b=>FAcin,sum=>FAsum,carry=>FAc2);
FAcout <= FAc1 or FAc2;
end FA; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_delay_GNUECIBFDH.vhd | 16 | 1088 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_delay_GNUECIBFDH is
generic ( ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 1;
BitPattern : string := "0";
width : positive := 1);
port(
aclr : in std_logic;
clock : in std_logic;
ena : in std_logic;
input : in std_logic_vector((width)-1 downto 0);
output : out std_logic_vector((width)-1 downto 0);
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_delay_GNUECIBFDH is
Begin
-- Delay Element, with reset value
DelayWithInit : alt_dspbuilder_SInitDelay generic map (
LPM_WIDTH => 1,
LPM_DELAY => 1,
SequenceLength => 1,
SequenceValue => "1",
ResetValue => "0")
port map (
dataa => input,
clock => clock,
ena => ena,
sclr => sclr,
aclr => aclr,
user_aclr => '0',
result => output);
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_delay_GNUECIBFDH.vhd | 16 | 1088 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_delay_GNUECIBFDH is
generic ( ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 1;
BitPattern : string := "0";
width : positive := 1);
port(
aclr : in std_logic;
clock : in std_logic;
ena : in std_logic;
input : in std_logic_vector((width)-1 downto 0);
output : out std_logic_vector((width)-1 downto 0);
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_delay_GNUECIBFDH is
Begin
-- Delay Element, with reset value
DelayWithInit : alt_dspbuilder_SInitDelay generic map (
LPM_WIDTH => 1,
LPM_DELAY => 1,
SequenceLength => 1,
SequenceValue => "1",
ResetValue => "0")
port map (
dataa => input,
clock => clock,
ena => ena,
sclr => sclr,
aclr => aclr,
user_aclr => '0',
result => output);
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/hdl/alt_dspbuilder_delay_GNUECIBFDH.vhd | 16 | 1088 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_delay_GNUECIBFDH is
generic ( ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 1;
BitPattern : string := "0";
width : positive := 1);
port(
aclr : in std_logic;
clock : in std_logic;
ena : in std_logic;
input : in std_logic_vector((width)-1 downto 0);
output : out std_logic_vector((width)-1 downto 0);
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_delay_GNUECIBFDH is
Begin
-- Delay Element, with reset value
DelayWithInit : alt_dspbuilder_SInitDelay generic map (
LPM_WIDTH => 1,
LPM_DELAY => 1,
SequenceLength => 1,
SequenceValue => "1",
ResetValue => "0")
port map (
dataa => input,
clock => clock,
ena => ena,
sclr => sclr,
aclr => aclr,
user_aclr => '0',
result => output);
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_port_GNEPKLLZKY.vhd | 17 | 489 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_port_GNEPKLLZKY is
port(
input : in std_logic_vector(31 downto 0);
output : out std_logic_vector(31 downto 0));
end entity;
architecture rtl of alt_dspbuilder_port_GNEPKLLZKY is
Begin
-- Straight Bypass block
output <= input;
end architecture; | mit |
Given-Jiang/Add_Frame | tb_Add_Frame/altera_lnsim/ama_preadder_function/_primary.vhd | 5 | 5462 | library verilog;
use verilog.vl_types.all;
entity ama_preadder_function is
generic(
preadder_mode : string := "SIMPLE";
width_in_a : integer := 1;
width_in_b : integer := 1;
width_in_c : integer := 1;
width_in_coef : integer := 1;
width_result_a : integer := 1;
width_result_b : integer := 1;
preadder_direction_0: string := "ADD";
preadder_direction_1: string := "ADD";
preadder_direction_2: string := "ADD";
preadder_direction_3: string := "ADD";
representation_preadder_adder: string := "UNSIGNED";
width_in_a_msb : vl_notype;
width_in_b_msb : vl_notype;
width_in_c_msb : vl_notype;
width_in_coef_msb: vl_notype;
width_result_a_msb: vl_notype;
width_result_b_msb: vl_notype;
width_preadder_adder_input: vl_notype;
width_preadder_adder_input_msb: vl_notype;
width_preadder_adder_result: vl_notype;
width_preadder_adder_result_msb: vl_notype;
width_preadder_adder_input_wire: vl_notype;
width_preadder_adder_input_wire_msb: vl_notype;
width_in_a_ext : vl_notype;
width_in_b_ext : vl_notype;
width_output_preadder: vl_notype;
width_output_preadder_msb: vl_notype;
width_output_coef: vl_notype;
width_output_coef_msb: vl_notype;
width_output_datab: vl_notype;
width_output_datab_msb: vl_notype;
width_output_datac: vl_notype;
width_output_datac_msb: vl_notype
);
port(
dataa_in_0 : in vl_logic_vector;
dataa_in_1 : in vl_logic_vector;
dataa_in_2 : in vl_logic_vector;
dataa_in_3 : in vl_logic_vector;
datab_in_0 : in vl_logic_vector;
datab_in_1 : in vl_logic_vector;
datab_in_2 : in vl_logic_vector;
datab_in_3 : in vl_logic_vector;
datac_in_0 : in vl_logic_vector;
datac_in_1 : in vl_logic_vector;
datac_in_2 : in vl_logic_vector;
datac_in_3 : in vl_logic_vector;
coef0 : in vl_logic_vector;
coef1 : in vl_logic_vector;
coef2 : in vl_logic_vector;
coef3 : in vl_logic_vector;
result_a0 : out vl_logic_vector;
result_a1 : out vl_logic_vector;
result_a2 : out vl_logic_vector;
result_a3 : out vl_logic_vector;
result_b0 : out vl_logic_vector;
result_b1 : out vl_logic_vector;
result_b2 : out vl_logic_vector;
result_b3 : out vl_logic_vector
);
attribute mti_svvh_generic_type : integer;
attribute mti_svvh_generic_type of preadder_mode : constant is 1;
attribute mti_svvh_generic_type of width_in_a : constant is 1;
attribute mti_svvh_generic_type of width_in_b : constant is 1;
attribute mti_svvh_generic_type of width_in_c : constant is 1;
attribute mti_svvh_generic_type of width_in_coef : constant is 1;
attribute mti_svvh_generic_type of width_result_a : constant is 1;
attribute mti_svvh_generic_type of width_result_b : constant is 1;
attribute mti_svvh_generic_type of preadder_direction_0 : constant is 1;
attribute mti_svvh_generic_type of preadder_direction_1 : constant is 1;
attribute mti_svvh_generic_type of preadder_direction_2 : constant is 1;
attribute mti_svvh_generic_type of preadder_direction_3 : constant is 1;
attribute mti_svvh_generic_type of representation_preadder_adder : constant is 1;
attribute mti_svvh_generic_type of width_in_a_msb : constant is 3;
attribute mti_svvh_generic_type of width_in_b_msb : constant is 3;
attribute mti_svvh_generic_type of width_in_c_msb : constant is 3;
attribute mti_svvh_generic_type of width_in_coef_msb : constant is 3;
attribute mti_svvh_generic_type of width_result_a_msb : constant is 3;
attribute mti_svvh_generic_type of width_result_b_msb : constant is 3;
attribute mti_svvh_generic_type of width_preadder_adder_input : constant is 3;
attribute mti_svvh_generic_type of width_preadder_adder_input_msb : constant is 3;
attribute mti_svvh_generic_type of width_preadder_adder_result : constant is 3;
attribute mti_svvh_generic_type of width_preadder_adder_result_msb : constant is 3;
attribute mti_svvh_generic_type of width_preadder_adder_input_wire : constant is 3;
attribute mti_svvh_generic_type of width_preadder_adder_input_wire_msb : constant is 3;
attribute mti_svvh_generic_type of width_in_a_ext : constant is 3;
attribute mti_svvh_generic_type of width_in_b_ext : constant is 3;
attribute mti_svvh_generic_type of width_output_preadder : constant is 3;
attribute mti_svvh_generic_type of width_output_preadder_msb : constant is 3;
attribute mti_svvh_generic_type of width_output_coef : constant is 3;
attribute mti_svvh_generic_type of width_output_coef_msb : constant is 3;
attribute mti_svvh_generic_type of width_output_datab : constant is 3;
attribute mti_svvh_generic_type of width_output_datab_msb : constant is 3;
attribute mti_svvh_generic_type of width_output_datac : constant is 3;
attribute mti_svvh_generic_type of width_output_datac_msb : constant is 3;
end ama_preadder_function;
| mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_decoder_GNBHXAVAPH.vhd | 4 | 903 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_decoder_GNBHXAVAPH is
generic ( decode : string := "010";
pipeline : natural := 1;
width : natural := 3);
port(
aclr : in std_logic;
clock : in std_logic;
data : in std_logic_vector((width)-1 downto 0);
dec : out std_logic;
ena : in std_logic;
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_decoder_GNBHXAVAPH is
Begin
-- DSP Builder Block - Simulink Block "Decoder"
Decoderi : alt_dspbuilder_sdecoderaltr Generic map (
width => 3,
decode => "010",
pipeline => 1)
port map (
aclr => aclr,
user_aclr => '0',
sclr => sclr,
clock => clock,
data => data,
dec => dec);
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_sImpulse11Altr.vhd | 8 | 2408 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library ieee ;
use ieee.std_logic_1164.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_sImpulse11Altr is
port (
clock : in std_logic;
ena : in std_logic :='1';
sclr : in std_logic :='0';
aclr : in std_logic :='0';
q : out std_logic
);
end alt_dspbuilder_sImpulse11Altr ;
architecture syn of alt_dspbuilder_sImpulse11Altr is
type States_ImpulseAltr is (sclear, shigh,slowend);
signal current_state : States_ImpulseAltr;
signal next_state : States_ImpulseAltr;
begin
rp:process(clock,aclr)
begin
if aclr='1' then
current_state <= sclear;
elsif clock'event and clock='1' then
if (sclr='1') then
current_state <= sclear;
elsif (ena='1') then
current_state <= next_state;
end if;
end if;
end process;
cp:process(current_state, sclr,ena)
begin
case current_state is
when sclear =>
q <= '0';
if (ena='1') and (sclr='0') then
next_state <= shigh;
else
next_state <= sclear;
end if;
when shigh =>
q <= '1';
if (sclr='1') then
next_state <= sclear;
else
next_state <= slowend ;
end if;
when slowend =>
q <= '0';
if (sclr='1') then
next_state <= sclear;
else
next_state <= slowend ;
end if;
end case;
end process;
end syn;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_SBitLogical.vhd | 20 | 3567 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_SBitLogical is
generic (
lpm_width : positive := 8 ;
lop : LogicalOperator := AltAND
);
port (
dataa : in std_logic_vector(lpm_width-1 downto 0);
result : out std_logic
);
end alt_dspbuilder_SBitLogical;
architecture SBitLogical_SYNTH of alt_dspbuilder_SBitLogical is
signal worand : std_logic_vector(lpm_width-1 downto 0);
signal ndataa : std_logic_vector(lpm_width-1 downto 0);
signal result_int : std_logic;
begin
u0: alt_dspbuilder_sAltrBitPropagate generic map(QTB=>DSPBuilderQTB, QTB_PRODUCT => DSPBuilderProduct, QTB_VERSION => DSPBuilderVersion)
port map (d => result_int, r => result);
------------------AND--------------------------------
go1p:if lop = AltAND generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
end generate gi;
result_int <= '1' when (worand=dataa) else '0';
end generate;
------------------OR--------------------------------
go2p:if lop = AltOR generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
ndataa(i) <= not (dataa(i));
end generate gi;
result_int <= '0' when (ndataa=worand) else '1';
end generate;
------------------XOR--------------------------------
go3p:if lop = AltXOR generate
gif:if (lpm_width>2) generate
process(dataa)
variable interes : std_logic ;
begin
interes := dataa(0) xor dataa(1);
for i in 2 to lpm_width-1 loop
interes := dataa(i) xor interes;
end loop;
result_int <= interes;
end process;
end generate;
gif2:if (lpm_width<3) generate
result_int <= dataa(0) xor dataa(1);
end generate;
end generate;
------------------NOR--------------------------------
go4p:if lop = AltNOR generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
ndataa(i) <= not (dataa(i));
end generate gi;
result_int <= '1' when (ndataa=worand) else '0';
end generate;
------------------NAND--------------------------------
go5p:if lop = AltNAND generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
end generate gi;
result_int <= '0' when (worand=dataa) else '1';
end generate;
------------------NOT (Single Bit only)---------------
go6p:if lop = AltNOT generate
result_int <= not (dataa(0));
end generate;
end SBitLogical_SYNTH;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_testbench_clock_GNCGUFKHRR.vhd | 15 | 2707 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_testbench_clock_GNCGUFKHRR is
generic ( SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
RESET_REGISTER_CASCADE_DEPTH : natural := 0);
port(
aclr_out : out std_logic;
clock_out : out std_logic;
reg_aclr_out : out std_logic;
tb_aclr : out std_logic);
end entity;
architecture rtl of alt_dspbuilder_testbench_clock_GNCGUFKHRR is
function alt_dspbuilder_testbench_clock_GNCGUFKHRR_offset_generate (
latency, cascade_depth: integer)
return integer is
begin
if latency > cascade_depth then
return latency - cascade_depth;
else
return 0;
end if;
end function alt_dspbuilder_testbench_clock_GNCGUFKHRR_offset_generate;
constant cPERIOD : time := 20 ns;
constant cPHASE_DELAY : time := 0 fs;
constant cINITIAL_CLOCK : std_logic := '1';
constant offset : integer := alt_dspbuilder_testbench_clock_GNCGUFKHRR_offset_generate(RESET_LATENCY, RESET_REGISTER_CASCADE_DEPTH);
Begin
-- clock generator
-- We want to start simulation after 4 cycles.
-- Start the salt generators 1 period early as they are read on falling edges
-- take into account any extra registering of resets that need to be compensated for in the msim testbench flow
tb_aclr <= '1', '0' after (SIMULATION_START_CYCLE + RESET_LATENCY) * cPERIOD + cPHASE_DELAY - cPERIOD;
-- Start the system 1/2 a period early so it is ready on the next edge
-- we may need to offset this by the difference in the DUT reset latency (needed to align this reset correctly)
-- from the actual latency present in the reset synchronization circuitry
-- so the actual hardware comes out of reset exactly when the data capture elements (using reg_aclr_out)
-- are switched 'on'
aclr_out <= '1', '0' after (SIMULATION_START_CYCLE + offset) * cPERIOD + cPHASE_DELAY - cPERIOD/2;
-- potentially delayed reset signal - delayed to hide any extra latency due to registered reset signal
-- this signal should be hooked up to data capture elements
-- will be identical to above system reset in default (unregistered) reset case
reg_aclr_out <= '1', '0' after (SIMULATION_START_CYCLE + RESET_LATENCY)* cPERIOD + cPHASE_DELAY - cPERIOD/2;
GEN_CLK: process
begin
wait for cPHASE_DELAY;
loop
clock_out <= cINITIAL_CLOCK;
wait for cPERIOD/2;
clock_out <= not cINITIAL_CLOCK;
wait for cPERIOD/2;
end loop;
end process GEN_CLK;
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/db/alt_dspbuilder_if_statement_GNUCFELPE2.vhd | 4 | 1405 |
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_if_statement_GNUCFELPE2 is
generic ( use_else_output : natural := 0;
bwr : natural := 0;
use_else_input : natural := 0;
signed : natural := 0;
HDLTYPE : string := "STD_LOGIC_VECTOR";
if_expression : string := "(a=b)";
number_inputs : integer := 2;
width : natural := 16);
port(
true : out std_logic;
a : in std_logic_vector(15 downto 0);
b : in std_logic_vector(15 downto 0));
end entity;
architecture rtl of alt_dspbuilder_if_statement_GNUCFELPE2 is
signal result : std_logic;
constant zero : STD_LOGIC_VECTOR(15 DOWNTO 0) := (others=>'0');
constant one : STD_LOGIC_VECTOR(15 DOWNTO 0) := (0 => '1', others => '0');
function myFunc ( Value: boolean )
return std_logic is
variable func_result : std_logic;
begin
if (Value) then
func_result := '1';
else
func_result := '0';
end if;
return func_result;
end;
function myFunc ( Value: std_logic )
return std_logic is
begin
return Value;
end;
Begin
-- DSP Builder Block - Simulink Block "IfStatement"
result <= myFunc((a=b)) ;
true <= result;
end architecture;
| mit |
Given-Jiang/Add_Frame | tb_Add_Frame/db/alt_dspbuilder_delay_GNVCBR7UZP.vhd | 3 | 1050 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_delay_GNVCBR7UZP is
generic ( ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 0;
BitPattern : string := "000000000001";
width : positive := 12);
port(
aclr : in std_logic;
clock : in std_logic;
ena : in std_logic;
input : in std_logic_vector((width)-1 downto 0);
output : out std_logic_vector((width)-1 downto 0);
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_delay_GNVCBR7UZP is
Begin
-- Delay Element
Delay1i : alt_dspbuilder_SDelay generic map (
LPM_WIDTH => 12,
LPM_DELAY => 1,
SequenceLength => 1,
SequenceValue => "1")
port map (
dataa => input,
clock => clock,
ena => ena,
sclr => sclr,
aclr => aclr,
user_aclr => '0',
result => output);
end architecture; | mit |
Given-Jiang/Add_Frame | Add_Frame_dspbuilder/hdl/alt_dspbuilder_delay_GNVCBR7UZP.vhd | 3 | 1050 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_delay_GNVCBR7UZP is
generic ( ClockPhase : string := "1";
delay : positive := 1;
use_init : natural := 0;
BitPattern : string := "000000000001";
width : positive := 12);
port(
aclr : in std_logic;
clock : in std_logic;
ena : in std_logic;
input : in std_logic_vector((width)-1 downto 0);
output : out std_logic_vector((width)-1 downto 0);
sclr : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_delay_GNVCBR7UZP is
Begin
-- Delay Element
Delay1i : alt_dspbuilder_SDelay generic map (
LPM_WIDTH => 12,
LPM_DELAY => 1,
SequenceLength => 1,
SequenceValue => "1")
port map (
dataa => input,
clock => clock,
ena => ena,
sclr => sclr,
aclr => aclr,
user_aclr => '0',
result => output);
end architecture; | mit |
monotone-RK/FACE | IEICE-Trans/8-way/src/ip_pcie/PCIeGen2x8If128_sim_netlist.vhdl | 1 | 4993872 | null | mit |
Xion345/fpga-projects | library/basic/counter_mod_m.vhd | 1 | 1083 | -- Simple modulo m counter
-- 20/07/2015
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity counter_mod_m is
generic(
N: integer := 4; -- Number of bits
M: integer := 10 -- Maximum value
);
port(
clk: in std_logic;
reset: in std_logic; -- Asynchronous reset
max_tick: out std_logic; -- Maximum value reached tick
q: out std_logic_vector(N-1 downto 0) -- Current value
);
end counter_mod_m;
architecture counter_mod_m_arch of counter_mod_m is
signal r_reg: unsigned(N-1 downto 0);
signal r_next: unsigned(N-1 downto 0);
begin
-- State register
process(clk, reset)
begin
if (reset='1') then
r_reg <= (others => '0');
elsif (rising_edge(clk)) then
r_reg <= r_next;
end if;
end process;
-- Next state logic
r_next <= r_reg + 1 when r_reg /= (M-1) else
(others => '0');
-- Output logic
q <= std_logic_vector(r_reg);
max_tick <= '1' when r_reg = (M-1) else '0';
end counter_mod_m_arch;
| mit |
Xion345/fpga-projects | projects/vga-palette/vga_palette_top.vhd | 1 | 1205 | -- VGA Palette testing circuit
--
library ieee;
use ieee.std_logic_1164.ALL;
entity vga_palette_top is
port(
clk, reset: in std_logic;
red: out std_logic_vector(2 downto 0);
green: out std_logic_vector(2 downto 0);
blue: out std_logic_vector(2 downto 1);
hsync: out std_logic;
vsync: out std_logic;
blue_on: in std_logic;
green_on: in std_logic;
red_on: in std_logic
);
end vga_palette_top;
architecture vga_palette_top_arch of vga_palette_top is
-- VGA Sync.
signal pixel_tick: std_logic;
signal pixel_x, pixel_y: std_logic_vector(9 downto 0);
signal video_on: std_logic;
begin
vga_sync: entity work.vga_sync
port map(clk => clk, reset => reset,
pixel_tick => pixel_tick,
x => pixel_x, y => pixel_y,
hsync => hsync, vsync => vsync, video_on => video_on);
vga_palette: entity work.vga_palette
port map(pixel_x => pixel_x(6 downto 0), pixel_y => pixel_y(6 downto 0),
video_on => video_on,
red => red, green => green, blue => blue,
red_on => red_on, green_on => green_on, blue_on => blue_on);
end vga_palette_top_arch;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_clock_GNQFU4PUDH.vhd | 20 | 569 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_clock_GNQFU4PUDH is
port(
aclr : in std_logic;
aclr_n : in std_logic;
aclr_out : out std_logic;
clock : in std_logic;
clock_out : out std_logic);
end entity;
architecture rtl of alt_dspbuilder_clock_GNQFU4PUDH is
Begin
-- Straight Bypass Clock
clock_out <= clock;
-- reset logic
aclr_out <= aclr;
end architecture; | mit |
Siliciumer/DOS-Mario-FPGA | DOS_Mario.srcs/sources_1/ip/dist_mem_gen_1/dist_mem_gen_v8_0_10/hdl/dist_mem_gen_v8_0_vhsyn_rfs.vhd | 3 | 173134 | `protect begin_protected
`protect version = 1
`protect encrypt_agent = "XILINX"
`protect encrypt_agent_info = "Xilinx Encryption Tool 2014"
`protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64)
`protect key_block
TUg3INHh1m7IhzJTWhl4hakhjur7Vc43ogrhEddqQLKQ5cTmQJLyY/O39MHvxAMR2gKZYkMnwG2l
6cfBg6sy6w==
`protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128)
`protect key_block
Y/ia27A6wO8jmiJeDD7eisp/o0DINS9aBVInHA54TUKf2WoIq6hh9BVkHnKwsRC6y0ISNQHYfAzE
PTfro7nWLiogO1UdUR6Fdg0dugY297GMGNSgJp4hSjDcncspoXCIzLXdW36IFe/bIH2I6rVCdQGq
Bfb5Gy8ISAcPnQqsvfA=
`protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128)
`protect key_block
kz0wef7kcYmKk02nW3FHEht391vWQJY92Du/ZIt2m7OdokLfO6Gv5DKbZwOuyO+yXdcUUdWHG1Hg
t7gRWxEAkdlL4/9TviviX6GS9QtH9m8xJMYQY/3evLZuJv2spaJpj9XdTT9hQlWB3KOO/c4zrwkZ
4xmqwjxejGJsb+FM5sQ=
`protect key_keyowner = "Aldec", key_keyname= "ALDEC15_001", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256)
`protect key_block
dkOPiv2V30YAr2yuyXphkE0lv+yYw3tHqA0yhJuJHSglEGmP0QTtSBhDMb+PGYV8NkSI8H4eVQnW
syXqKR2vhzWnJ0zRCtYlN/vMwjrZm35SHeCGC3CWsCXPg5fWlXJzxzDU4vP5OD4maGH8Ec1mMktz
gRtGcXleZSmjeO8rz4N7Zl+e7irHttUbvM4i2n84/VDlVWomp1+ZWh9VIiNadiVaF4GeyDmNDujq
KQ5joBbbe4y2hoQTmu/mtfDUMZGGvUoImw+vazPIlVHH7z5MXdEpWiEKnH14qDniwjKNjq35y1au
oZwXSsG5YkjKitE/OpWH3/uszWGUyrd02WCk7g==
`protect key_keyowner = "ATRENTA", key_keyname= "ATR-SG-2015-RSA-3", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256)
`protect key_block
YPeWnh+rwbGP5pImDI2d2//p4f/IpBCUCuKd/hCDk+2PHES852iLZdoJloFPd1161LDanxCbRI/P
1nJbZi1obBy3B4ujpRc/a43DfJ7dxQHZtNjYKs9a//VCBS+23vBkqK8aImNg1Enfw1pvrz0j2FHW
6mOF4jYRiH5WXOIIuBHFpcloerzd0g9AWQUxk/T+WCSCqmYWUEWg517jiOu9LvsqInAOCZ5t0SWx
1A5jeWyL+aVl7ZT62sEEoT6kmD5KQH/kGkUI9nUWAJWa2/k8yR8JxLoz3s/KFTMxpyrcHKw2Mba6
kP0rB/IanjAxmkWkkMe1p+USCoEpuIy40jLfFA==
`protect key_keyowner = "Xilinx", key_keyname= "xilinx_2015_12", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256)
`protect key_block
RAvb/4vlo/jbWHAYh5QgcKvlffxbz7XViXDEv3yRgfG8bjy/C4S5r75Las5nWMxVHPrwZeDhcP3y
eWa+WDaWFUlrAa+9O9M4rBFwyH6vPJbUtAoKNZ7YapE5ME95Y4BKJQml4a6fc9hGkDkuDTohQL+e
h1h5j2N9YkWtTKH92l+ACHoeTq3jJ7tMmqXWKNWTJN+Wsc2eZhJhClQDjPMSNa3YztWgvs7raemX
fIP1EibAwQWW24hS/XYADD61gRmAHEtBDkKgnD8twsgno/WaAeXts9/ZgPRMk/yeorVQWfEagZMk
7092cD8GLSfd1pkbwQlcvmGKY4sXaCSxbhTWwA==
`protect data_method = "AES128-CBC"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 126032)
`protect data_block
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
TRkYE8o=
`protect end_protected
| mit |
Andy46/OV7670-VHDL | OV7670/src/mod_VGA/mod_VGA.vhd | 1 | 4153 | ----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 20:32:02 05/05/2014
-- Design Name:
-- Module Name: mod_VGA - Behavioral
-- Project Name:
-- Target Devices:
-- Tool versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
use IEEE.NUMERIC_STD.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity mod_VGA is
Port ( clk_100MHz, reset : in STD_LOGIC; -- FPGA's clock, FPGA's reset(Active Low)
-- VGA pins --
vga_vsync, vga_hsync : out STD_LOGIC; -- VGA Vertical synchronization, VGA Horizontal synchronization
vga_red, vga_green, vga_blue : out STD_LOGIC_VECTOR(3 downto 0) -- VGA colors (4bits)
-- vga_red, vga_green, vga_blue : out STD_LOGIC; -- VGA colors (1bit)
-- VGA pins --
);
end mod_VGA;
architecture Behavioral of mod_VGA is
--Divisor de frecuencia
component Divisor4 is
Port ( clk_in, reset : in std_logic;
clk_out : out std_logic);
end component;
signal clk_25MHz : std_logic;
--Contadores vertical y horizontal
component contador10bits is
Port ( A : in STD_LOGIC_VECTOR (9 downto 0);
A_next : out STD_LOGIC_VECTOR (9 downto 0));
end component;
--Señales
signal Vcount, Vcount_next : std_logic_vector(9 downto 0);
signal Hcount, Hcount_next : std_logic_vector(9 downto 0);
--Imagen
component mod_Image is
Port ( clk_100MHz, reset : in STD_LOGIC;
readX, readY : in STD_LOGIC_VECTOR (9 downto 0); -- Pixel read addr(row, column)
vga_red, vga_green, vga_blue : out STD_LOGIC_VECTOR (3 downto 0); -- Pixel read color
writeX, writeY : in std_logic_vector (9 downto 0); -- Pixel write addr(row, column)
pixel : in std_logic_vector(7 downto 0) -- Pixel write color
);
end component;
begin
--Divisor de frecuencia 1/4
Div_VGA: Divisor4 port map(clk_in => clk_100MHz, reset => reset, clk_out => clk_25MHz);
--Asignar colores
Im: mod_Image port map( clk_100MHz => clk_100MHz, reset => reset, readX => Hcount, readY => Vcount,
vga_red => vga_red, vga_green => vga_green, vga_blue => vga_blue,
writeX => std_logic_vector(to_unsigned(640, 10)), writeY =>std_logic_vector(to_unsigned(480,10)),
pixel => "00000011" );
--Process VSYNC
FA_Vsync: contador10bits port map(A => Vcount, A_next => Vcount_next);
process(clk_25MHz, reset, Hcount, Vcount)
begin
if clk_25MHz'event and clk_25MHz = '1' then
if reset = '0' then
Vcount <= (others => '0');
vga_vsync <= '0';
else
if Hcount = std_logic_vector(to_unsigned(800, 10)) then -- 1040 | 800 | 800
if Vcount = std_logic_vector(to_unsigned(525, 10)) then -- 665 | 525 | 448
Vcount <= (others => '0');
else
Vcount <= Vcount_next;
end if;
if Vcount >= std_logic_vector(to_unsigned(490, 10)) and Vcount < std_logic_vector(to_unsigned(492, 10)) then -- 636,642 | 490,492 | 386,388
vga_vsync <= '1';
else
vga_vsync <= '0';
end if;
end if;
end if;
end if;
end process;
--Process HSYNC
FA_Hsync: contador10bits port map(A => Hcount, A_next => Hcount_next);
process(clk_25MHz, reset)
begin
if clk_25MHz'event and clk_25MHz = '1' then
if reset = '0' then
Hcount <= (others => '0');
vga_hsync <= '0';
else
if Hcount = std_logic_vector(to_unsigned(800, 10)) then -- 1040 | 800 | 800
Hcount <= (others => '0');
else
Hcount <= Hcount_next;
end if;
if Hcount >= std_logic_vector(to_unsigned(656, 10)) and Hcount < std_logic_vector(to_unsigned(752, 10)) then -- 855, 975 | 656,752 | 656,752
vga_hsync <= '1';
else
vga_hsync <= '0';
end if;
end if;
end if;
end process;
end Behavioral; | mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/hdl/alt_dspbuilder_multiply_add_GNKLXFKAO3.vhd | 8 | 1702 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_multiply_add_GNKLXFKAO3 is
generic ( family : string := "Cyclone V";
direction : string := "AddAdd";
data3b_const : string := "00011110";
data2b_const : string := "10010110";
representation : string := "UNSIGNED";
dataWidth : integer := 8;
data4b_const : string := "01001100";
number_multipliers : integer := 3;
pipeline_register : string := "NoRegister";
use_dedicated_circuitry : integer := 1;
data1b_const : string := "01001100";
use_b_consts : natural := 1);
port(
clock : in std_logic;
aclr : in std_logic;
data1a : in std_logic_vector(7 downto 0);
data2a : in std_logic_vector(7 downto 0);
data3a : in std_logic_vector(7 downto 0);
result : out std_logic_vector(17 downto 0);
user_aclr : in std_logic;
ena : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_multiply_add_GNKLXFKAO3 is
Begin
MultiplyAddi : alt_dspbuilder_AltMultConst generic map (
CA => "01001100",
CB => "10010110",
CC => "00011110",
CD => "01001100",
width_a => 8,
width_r => 18,
RegStruct => NoRegister,
data_signed => false
)
port map (
datain => data1a ,
datbin => data2a ,
datcin => data3a ,
datdin => "00000000" ,
dataout => result(17 downto 0),
clock => clock,
ena => ena,
aclr => aclr,
user_aclr => user_aclr
);
end architecture; | mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/db/alt_dspbuilder_bus_concat_GNIIOZRPJD.vhd | 12 | 653 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_bus_concat_GNIIOZRPJD is
generic ( widthB : natural := 8;
widthA : natural := 8);
port(
a : in std_logic_vector((widthA)-1 downto 0);
aclr : in std_logic;
b : in std_logic_vector((widthB)-1 downto 0);
clock : in std_logic;
output : out std_logic_vector((widthA+widthB)-1 downto 0));
end entity;
architecture rtl of alt_dspbuilder_bus_concat_GNIIOZRPJD is
Begin
output <= a & b;
end architecture; | mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/db/alt_dspbuilder_SBF.vhd | 20 | 8869 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_SBF is
generic (
width_inl : natural :=10;
width_inr : natural :=10;
width_outl : natural :=8;
width_outr : natural :=8;
round : natural :=1;
satur : natural :=1;
lpm_signed : BusArithm :=BusIsSigned
);
port (
xin : in std_logic_vector(width_inl+width_inr-1 downto 0);
yout : out std_logic_vector(width_outl+width_outr-1 downto 0)
);
end alt_dspbuilder_SBF;
architecture SBF_SYNTH of alt_dspbuilder_SBF is
signal youtround : std_logic_vector(width_inl+width_outr-1 downto 0);
signal youtroundc : std_logic_vector(width_outl+width_outr-1 downto 0);
signal xinextc : std_logic_vector(width_outl+width_inr-1 downto 0) ;
signal xin_int : std_logic_vector(width_inl+width_inr-1 downto 0);
begin
u0: alt_dspbuilder_sAltrPropagate generic map(QTB=>DSPBuilderQTB, QTB_PRODUCT => DSPBuilderProduct, QTB_VERSION => DSPBuilderVersion , width=> width_inl+width_inr)
port map (d => xin, r => xin_int);
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--(width_inl>=width_outl) and (width_inr>=width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_a:if (width_inl>=width_outl) and (width_inr>=width_outr) generate
gnsnr:if (round = 0) generate
gnsat:if (satur=0) generate
gl:for i in 0 to width_outl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate ;
end generate gnsat;
gsat:if (satur>0) generate
gl:for i in 0 to width_inl+width_outr-1 generate
youtround(i) <= xin_int(i+width_inr-width_outr);
end generate ;
us:alt_dspbuilder_ASAT
generic map ( widthin => width_inl+width_outr,
widthout => width_outl+width_outr,
lpm_signed => lpm_signed)
port map ( xin => youtround,
yout => yout);
end generate gsat;
end generate ;
rnd:if (round>0)generate
ura:alt_dspbuilder_AROUND
generic map ( widthin => width_inl+width_inr,
widthout => width_inl+width_outr)
port map ( xin => xin_int,
yout => youtround);
gns:if satur=0 generate
yout(width_outl+width_outr-1 downto 0) <= youtround(width_outl+width_outr-1 downto 0);
end generate gns;
gs:if (satur>0) generate
us:alt_dspbuilder_ASAT
generic map ( widthin => width_inl+width_outr,
widthout => width_outl+width_outr,
lpm_signed => lpm_signed)
port map ( xin => youtround,
yout => yout
);
end generate gs;
end generate rnd;
end generate sbf_a;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- (width_inl>width_outl) and (width_inr<width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_b:if (width_inl>=width_outl) and (width_inr<width_outr) generate
ns:if (satur=0) generate
gc:for i in 0 to width_outr-width_inr-1 generate
yout(i) <= '0';
end generate gc;
gl:for i in width_outr-width_inr to width_outl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate ;
end generate ns ;
gs:if (satur>0) generate
gc:for i in 0 to width_outr-width_inr-1 generate
youtround(i) <= '0';
end generate gc;
gl:for i in width_outr-width_inr to width_inl+width_outr-1 generate
youtround(i) <= xin_int(i+width_inr-width_outr);
end generate ;
us:alt_dspbuilder_ASAT
generic map ( widthin => width_inl+width_outr,
widthout => width_outl+width_outr,
lpm_signed => lpm_signed)
port map ( xin => youtround,
yout => yout);
end generate gs ;
end generate sbf_b;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- (width_inl<width_outl) and (width_inr>width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_c:if (width_inl<width_outl) and (width_inr>=width_outr) generate
gnsnr:if (round = 0) generate
gl:for i in 0 to width_inl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate ;
gc:for i in width_inl+width_outr to width_outl+width_outr-1 generate
yout(i) <= xin_int( width_inl+width_inr-1);
end generate ;
end generate ;
rnd:if (round > 0) generate
xinextc(width_inl+width_inr-1 downto 0) <= xin_int(width_inl+width_inr-1 downto 0);
gxinextc:for i in width_inl+width_inr to width_outl+width_inr-1 generate
xinextc(i) <= xin_int(width_inl+width_inr-1);
end generate gxinextc;
urb:alt_dspbuilder_AROUND
generic map ( widthin => width_outl+width_inr,
widthout => width_outl+width_outr)
port map ( xin => xinextc,
yout => youtroundc);
yout <= youtroundc;
end generate rnd ;
end generate sbf_c;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- (width_inl<width_outl) and (width_inr<width_outr)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
sbf_d:if (width_inl<width_outl) and (width_inr<width_outr) generate
gl:for i in width_outr-width_inr to width_inl+width_outr-1 generate
yout(i) <= xin_int(i+width_inr-width_outr);
end generate gl;
gc:for i in 0 to width_outr-width_inr-1 generate
yout(i) <= '0';
end generate gc;
gcv:for i in width_inl+width_outr to width_outl+width_outr-1 generate
yout(i) <= xin_int( width_inl+width_inr-1);
end generate gcv;
end generate sbf_d;
end SBF_SYNTH;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_testbench_capture_GNHCRI5YMO.vhd | 20 | 1775 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
library std;
use std.textio.all;
entity alt_dspbuilder_testbench_capture_GNHCRI5YMO is
generic ( XFILE : string := "default";
DSPBTYPE : string := "");
port(
clock : in std_logic;
aclr : in std_logic;
input : in std_logic_vector(23 downto 0));
end entity;
architecture rtl of alt_dspbuilder_testbench_capture_GNHCRI5YMO is
function str(sl: std_logic) return character is
variable c: character;
begin
case sl is
when '0' => c := '0';
when '1' => c := '1';
when others => c := 'X';
end case;
return c;
end str;
function str(slv: std_logic_vector) return string is
variable result : string (1 to slv'length);
variable r : integer;
begin
r := 1;
for i in slv'range loop
result(r) := str(slv(i));
r := r + 1;
end loop;
return result;
end str;
procedure write_type_header(file f:text) is
use STD.textio.all;
variable my_line : line;
begin
write ( my_line, DSPBTYPE);
writeline ( f, my_line );
end procedure write_type_header ;
file oFile : text open write_mode is XFILE;
Begin
-- data capture
-- write type information to output file
write_type_header(oFile);
-- Writing Output Signal into file
Output:process(clock)
variable traceline : line ;
begin
if (aclr ='1') then
-- do not record
elsif clock'event and clock='1' then
write(traceline, str(input),justified=>left);
writeline(oFile,traceline);
end if ;
end process ;
end architecture;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_SDelay.vhd | 20 | 3612 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_SDelay is
generic (
lpm_width : positive :=8;
lpm_delay : positive :=2;
SequenceLength : positive :=1;
SequenceValue : std_logic_vector :="1"
);
port (
dataa : in std_logic_vector(lpm_width-1 downto 0);
clock : in std_logic ;
ena : in std_logic :='1';
aclr : in std_logic :='0';
user_aclr : in std_logic :='0';
sclr : in std_logic :='0';
result : out std_logic_vector(lpm_width-1 downto 0) :=(others=>'0')
);
end alt_dspbuilder_SDelay;
architecture SDelay_SYNTH of alt_dspbuilder_SDelay is
type StdUArray is array (lpm_delay-1 downto 0) of std_logic_vector (lpm_width-1 downto 0);
signal DelayLine : StdUArray;
signal dataa_int : std_logic_vector(lpm_width-1 downto 0);
signal seqenable : std_logic ;
signal enadff : std_logic ;
signal aclr_i : std_logic ;
begin
aclr_i <= aclr or user_aclr;
u0: alt_dspbuilder_sAltrPropagate generic map(QTB=>DSPBuilderQTB, QTB_PRODUCT => DSPBuilderProduct, QTB_VERSION => DSPBuilderVersion , width=> lpm_width)
port map (d => dataa, r => dataa_int);
gnoseq: if ((SequenceLength=1) and (SequenceValue="1")) generate
enadff <= ena;
end generate gnoseq;
gseq: if not ((SequenceLength=1) and (SequenceValue="1")) generate
u:alt_dspbuilder_vecseq generic map (SequenceLength=>SequenceLength,SequenceValue=>SequenceValue)
port map (clock=>clock, ena=>ena, aclr=>aclr_i, sclr=>sclr, yout=> seqenable);
enadff <= seqenable and ena;
end generate gseq;
gen1:if lpm_delay=1 generate
process(clock, aclr_i)
begin
if aclr_i='1' then
result <=(others=>'0');
elsif clock'event and clock='1' then
if (sclr ='1') then
result <=(others=>'0');
elsif enadff ='1' then
result <= dataa_int;
end if ;
end if ;
end process ;
end generate ;
gen2:if lpm_delay>1 generate
process(clock, aclr_i)
begin
if aclr_i='1' then
DelayLine <= (others => (others => '0'));
elsif clock'event and clock='1' then
if (sclr='1') then
DelayLine <= (others => (others => '0'));
elsif (enadff='1') then
DelayLine(0) <= dataa_int;
for i in 1 to lpm_delay-1 loop
DelayLine(i) <= DelayLine(i-1);
end loop;
end if ;
end if ;
end process ;
result <= DelayLine(lpm_delay-1);
end generate ;
end SDelay_SYNTH;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/db/alt_dspbuilder_SDelay.vhd | 20 | 3612 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_SDelay is
generic (
lpm_width : positive :=8;
lpm_delay : positive :=2;
SequenceLength : positive :=1;
SequenceValue : std_logic_vector :="1"
);
port (
dataa : in std_logic_vector(lpm_width-1 downto 0);
clock : in std_logic ;
ena : in std_logic :='1';
aclr : in std_logic :='0';
user_aclr : in std_logic :='0';
sclr : in std_logic :='0';
result : out std_logic_vector(lpm_width-1 downto 0) :=(others=>'0')
);
end alt_dspbuilder_SDelay;
architecture SDelay_SYNTH of alt_dspbuilder_SDelay is
type StdUArray is array (lpm_delay-1 downto 0) of std_logic_vector (lpm_width-1 downto 0);
signal DelayLine : StdUArray;
signal dataa_int : std_logic_vector(lpm_width-1 downto 0);
signal seqenable : std_logic ;
signal enadff : std_logic ;
signal aclr_i : std_logic ;
begin
aclr_i <= aclr or user_aclr;
u0: alt_dspbuilder_sAltrPropagate generic map(QTB=>DSPBuilderQTB, QTB_PRODUCT => DSPBuilderProduct, QTB_VERSION => DSPBuilderVersion , width=> lpm_width)
port map (d => dataa, r => dataa_int);
gnoseq: if ((SequenceLength=1) and (SequenceValue="1")) generate
enadff <= ena;
end generate gnoseq;
gseq: if not ((SequenceLength=1) and (SequenceValue="1")) generate
u:alt_dspbuilder_vecseq generic map (SequenceLength=>SequenceLength,SequenceValue=>SequenceValue)
port map (clock=>clock, ena=>ena, aclr=>aclr_i, sclr=>sclr, yout=> seqenable);
enadff <= seqenable and ena;
end generate gseq;
gen1:if lpm_delay=1 generate
process(clock, aclr_i)
begin
if aclr_i='1' then
result <=(others=>'0');
elsif clock'event and clock='1' then
if (sclr ='1') then
result <=(others=>'0');
elsif enadff ='1' then
result <= dataa_int;
end if ;
end if ;
end process ;
end generate ;
gen2:if lpm_delay>1 generate
process(clock, aclr_i)
begin
if aclr_i='1' then
DelayLine <= (others => (others => '0'));
elsif clock'event and clock='1' then
if (sclr='1') then
DelayLine <= (others => (others => '0'));
elsif (enadff='1') then
DelayLine(0) <= dataa_int;
for i in 1 to lpm_delay-1 loop
DelayLine(i) <= DelayLine(i-1);
end loop;
end if ;
end if ;
end process ;
result <= DelayLine(lpm_delay-1);
end generate ;
end SDelay_SYNTH;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_multiplexer_GNCALBUTDR.vhd | 12 | 1253 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_multiplexer_GNCALBUTDR is
generic ( HDLTYPE : string := "STD_LOGIC_VECTOR";
use_one_hot_select_bus : natural := 0;
width : positive := 24;
pipeline : natural := 0;
number_inputs : natural := 2);
port(
clock : in std_logic;
aclr : in std_logic;
sel : in std_logic_vector(0 downto 0);
result : out std_logic_vector(23 downto 0);
ena : in std_logic;
user_aclr : in std_logic;
in0 : in std_logic_vector(23 downto 0);
in1 : in std_logic_vector(23 downto 0));
end entity;
architecture rtl of alt_dspbuilder_multiplexer_GNCALBUTDR is
signal data_muxin : std_logic_vector(47 downto 0);
Begin
data_muxin <= in1 & in0 ;
nto1Multiplexeri : alt_dspbuilder_sMuxAltr generic map (
lpm_pipeline =>0,
lpm_size => 2,
lpm_widths => 1 ,
lpm_width => 24 ,
SelOneHot => 0 )
port map (
clock => clock,
ena => ena,
user_aclr => user_aclr,
aclr => aclr,
data => data_muxin,
sel => sel,
result => result);
end architecture;
| mit |
inmcm/Simon_Speck_Ciphers | VHDL/Speck_Constants.vhd | 3 | 2745 | -- Speck_Constants.vhd
-- Copyright 2016 Michael Calvin McCoy
-- [email protected]
-- see LICENSE.md
library IEEE;
use IEEE.STD_LOGIC_1164.all;
package SPECK_CONSTANTS is
function Round_Count_Lookup(key_size,block_size : integer range 0 to 256) return integer;
function Beta_Lookup(key_size,block_size : integer range 0 to 256) return integer;
function Alpha_Lookup(key_size,block_size : integer range 0 to 256) return integer;
end SPECK_CONSTANTS;
package body SPECK_CONSTANTS is
function Round_Count_Lookup(key_size,block_size : integer range 0 to 256) return integer is
variable round_count_tmp : integer range 0 to 63 := 0;
begin
-- Block Size 32 and Key Size 64 use 22 rounds
if (BLOCK_SIZE = 32 and KEY_SIZE = 64) then
round_count_tmp := 22;
-- Block Size 48 and Key Size 72 use 22 rounds
elsif (BLOCK_SIZE = 48 and KEY_SIZE = 72) then
round_count_tmp := 22;
-- Block Size 48 and Key Size 96 use 23 rounds
elsif (BLOCK_SIZE = 48 and KEY_SIZE = 96) then
round_count_tmp := 23;
-- Block Size 64 and Key Size 96 use 26 rounds
elsif (BLOCK_SIZE = 64 and KEY_SIZE = 96 ) then
round_count_tmp := 26;
-- Block Size 64 and Key Size 128 use 27 rounds
elsif (BLOCK_SIZE = 64 and KEY_SIZE = 128) then
round_count_tmp := 27;
-- Block Size 96 and Key Size 96 use 28 rounds
elsif (BLOCK_SIZE = 96 and KEY_SIZE = 96) then
round_count_tmp := 28;
-- Block Size 96 and Key Size 144 use 29 rounds
elsif (BLOCK_SIZE = 96 and KEY_SIZE = 144) then
round_count_tmp := 29;
-- Block Size 128 and Key Size 128 use 32 rounds
elsif (BLOCK_SIZE = 128 and KEY_SIZE = 128) then
round_count_tmp := 32;
-- Block Size 128 and Key Size 192 used 33 rounds
elsif (BLOCK_SIZE = 128 and KEY_SIZE = 192) then
round_count_tmp := 33;
-- Block Size 128 and Key Size 256 use 34 rounds
elsif (BLOCK_SIZE = 128 and KEY_SIZE = 256) then
round_count_tmp := 34;
end if;
return round_count_tmp;
end Round_Count_Lookup;
function Beta_Lookup(key_size,block_size : integer range 0 to 256) return integer is
variable b_tmp : integer range 0 to 3 := 0;
begin
-- Block Size 32 and Key Size 64 use beta rotate 2 bits
if (BLOCK_SIZE = 32 and KEY_SIZE = 64) then
b_tmp := 2;
-- All other key/block combinations use beta rotate 3 bits
else
b_tmp := 3;
end if;
return b_tmp;
end Beta_Lookup;
function Alpha_Lookup(key_size,block_size : integer range 0 to 256) return integer is
variable a_tmp : integer range 0 to 15 := 0;
begin
-- Block Size 32 and Key Size 64 use alpha rotate 7 bits
if (BLOCK_SIZE = 32 and KEY_SIZE = 64) then
a_tmp := 7;
-- All other key/block combinations use alpha rotate 8 bits
else
a_tmp := 8;
end if;
return a_tmp;
end Alpha_Lookup;
end SPECK_CONSTANTS; | mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/db/alt_dspbuilder_cast.vhd | 10 | 637 | -- This file is not intended for synthesis. The entity described in this file
-- is not directly instantiatable from HDL because its port list changes in a
-- way which is too complex to describe in VHDL or Verilog. Please use a tool
-- such as SOPC builder, DSP builder or the Megawizard plug-in manager to
-- instantiate this entity.
--altera translate_off
entity alt_dspbuilder_cast is
end entity alt_dspbuilder_cast;
architecture rtl of alt_dspbuilder_cast is
begin
assert false report "This file is not intended for synthesis. Please remove it from your project" severity error;
end architecture rtl;
--altera translate_on
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_sMultAltr.vhd | 12 | 3026 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_signed.all;
library LPM;
use LPM.LPM_COMPONENTS.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_sMultAltr is
generic (
lpm_widtha : positive ;
lpm_widthb : positive ;
lpm_representation : string ;
lpm_hint : string ;
OutputMsb : natural ;
OutputLsb : natural ;
pipeline : natural
);
port (
clock : in std_logic;
ena : in std_logic;
aclr : in std_logic;
user_aclr : in std_logic;
dataa : in std_logic_vector(lpm_widtha-1 downto 0);
datab : in std_logic_vector(lpm_widthb-1 downto 0);
result : out std_logic_vector(OutputMsb-OutputLsb downto 0)
);
end alt_dspbuilder_sMultAltr;
architecture synth of alt_dspbuilder_sMultAltr is
signal FullPrecisionResult : std_logic_vector(lpm_widtha+lpm_widthb-1 downto 0);
signal aclr_i : std_logic;
begin
aclr_i <= aclr or user_aclr;
gcomb: if pipeline=0 generate
U0 : lpm_mult
GENERIC MAP (
lpm_widtha => lpm_widtha,
lpm_widthb => lpm_widthb,
lpm_widthp => lpm_widtha+lpm_widthb,
lpm_widths => 1,
lpm_type => "LPM_MULT",
lpm_representation => lpm_representation,
lpm_hint => lpm_hint
)
PORT MAP (
dataa => dataa,
datab => datab,
result => FullPrecisionResult
);
end generate gcomb;
greg: if pipeline>0 generate
U0 : lpm_mult
GENERIC MAP (
lpm_widtha => lpm_widtha,
lpm_widthb => lpm_widthb,
lpm_widthp => lpm_widtha+lpm_widthb,
lpm_widths => 1,
lpm_type => "LPM_MULT",
lpm_representation => lpm_representation,
lpm_hint => lpm_hint,
lpm_pipeline => pipeline
)
PORT MAP (
dataa => dataa,
datab => datab,
clken=> ena,
aclr => aclr_i,
clock => clock,
result => FullPrecisionResult);
end generate greg;
g:for i in OutputLsb to OutputMsb generate
result(i-OutputLsb) <= FullPrecisionResult(i);
end generate g;
end synth;
| mit |
biximilien/ArithmeticLogicUnit | arithmetic_logic_unit.vhd | 1 | 3495 | -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- Cadre : GEN1333 - Conception des circuits integrés --
-- : Projet de conception individuel 1 --
-- Par : Maxime Gauthier --
-- Date : 03 / 21 / 2015 --
-- Fichier : arithmetic_logic_unit.vhd --
-- Description : VHDL pour une unité arithmétique logique générique (n bits) --
-- : basé sur du matériel de cours fourni par Ahmed Lakhsassi --
-- : et du code originellement écrit par Antoine Shaneen --
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- librairie a inclure
library ieee;
use ieee.std_logic_1164.all;
-- déclaration de l'entité de l'unité arithmétique logique générique (n bits) paramétrable
entity arithmetic_logic_unit is
generic ( N : integer := 8);
port (
operand_a, operand_b : in std_logic_vector (N downto 1);
mode_selector : in std_logic_vector (3 downto 1);
result : out std_logic_vector (N downto 1);
overflow_flag, carry_flag, zero_flag, sign_flag, parity_flag : out std_logic
);
end arithmetic_logic_unit;
-- architecture structurelle de l'additionneur générique (n bits).
architecture arithmetic_logic_unit_impl of arithmetic_logic_unit is
-- declaration des composants
component adder_n
port(
augend, addend : in std_logic_vector ( N downto 1 );
sum : out std_logic_vector ( N downto 1 );
carry_flag : out std_logic
);
end component;
component subtractor_n
port(
minuend, subtrahend : in std_logic_vector ( N downto 1 );
difference : out std_logic_vector ( N downto 1 );
overflow_flag : out std_logic
);
end component;
component decoder38
port(
decoder_in : in std_logic_vector ( 3 downto 1 );
decoder_out : out std_logic_vector ( 8 downto 1 )
);
end component;
component right_shift_n
port (
rs_in : in std_logic_vector ( N downto 1 );
rs_out : out std_logic_vector ( N downto 1 )
);
end component;
component left_shift_n
port (
ls_in : in std_logic_vector ( N downto 1 );
ls_out : out std_logic_vector ( N downto 1 )
);
end component;
component comparator_n
port (
a, b : in std_logic_vector ( N downto 1 );
gt, eq : out std_logic
);
end component;
begin
-- Ca marche pas!
s1 <= operand_a, s2 <= operand_b when mode_selector = "00000000",
s3 <= operand_a, s4 <= operand_b when mode_selector = "00000010",
s5 <= operand_a when mode_selector = "00010000",
s6 <= operand_a when mode_selector = "00100000",
s7 <= operand_b when mode_selector = "01000000",
s8 <= operand_b when others;
adder: adder_n port map (s1, s2, result, carry_flag);
subtractor: subtractor_n port map (s3, s4, result, overflow_flag);
rs_a: right_shift_n port map (s5, result);
ls_a: left_shift_n port map (s6, result);
rs_b: right_shift_n port map (s7, result);
ls_b: left_shift_n port map (s8, result);
end arithmetic_logic_unit_impl;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_multiply_add_GNPSDKCBU2.vhd | 1 | 1730 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_multiply_add_GNPSDKCBU2 is
generic ( family : string := "Cyclone V";
direction : string := "AddAdd";
data3b_const : string := "00011110";
data2b_const : string := "10010110";
representation : string := "UNSIGNED";
dataWidth : integer := 8;
data4b_const : string := "01001100";
number_multipliers : integer := 3;
pipeline_register : string := "InputsMultiplierandAdder";
use_dedicated_circuitry : integer := 1;
data1b_const : string := "01001100";
use_b_consts : natural := 1);
port(
clock : in std_logic;
aclr : in std_logic;
data1a : in std_logic_vector(7 downto 0);
data2a : in std_logic_vector(7 downto 0);
data3a : in std_logic_vector(7 downto 0);
result : out std_logic_vector(17 downto 0);
user_aclr : in std_logic;
ena : in std_logic);
end entity;
architecture rtl of alt_dspbuilder_multiply_add_GNPSDKCBU2 is
Begin
MultiplyAddi : alt_dspbuilder_AltMultConst generic map (
CA => "01001100",
CB => "10010110",
CC => "00011110",
CD => "01001100",
width_a => 8,
width_r => 18,
RegStruct => InputsMultiplierandAdder,
data_signed => false
)
port map (
datain => data1a ,
datbin => data2a ,
datcin => data3a ,
datdin => "00000000" ,
dataout => result(17 downto 0),
clock => clock,
ena => ena,
aclr => aclr,
user_aclr => user_aclr
);
end architecture; | mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/db/alt_dspbuilder_constant.vhd | 10 | 649 | -- This file is not intended for synthesis. The entity described in this file
-- is not directly instantiatable from HDL because its port list changes in a
-- way which is too complex to describe in VHDL or Verilog. Please use a tool
-- such as SOPC builder, DSP builder or the Megawizard plug-in manager to
-- instantiate this entity.
--altera translate_off
entity alt_dspbuilder_constant is
end entity alt_dspbuilder_constant;
architecture rtl of alt_dspbuilder_constant is
begin
assert false report "This file is not intended for synthesis. Please remove it from your project" severity error;
end architecture rtl;
--altera translate_on
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/db/alt_dspbuilder_port.vhd | 10 | 637 | -- This file is not intended for synthesis. The entity described in this file
-- is not directly instantiatable from HDL because its port list changes in a
-- way which is too complex to describe in VHDL or Verilog. Please use a tool
-- such as SOPC builder, DSP builder or the Megawizard plug-in manager to
-- instantiate this entity.
--altera translate_off
entity alt_dspbuilder_port is
end entity alt_dspbuilder_port;
architecture rtl of alt_dspbuilder_port is
begin
assert false report "This file is not intended for synthesis. Please remove it from your project" severity error;
end architecture rtl;
--altera translate_on
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_testbench_clock.vhd | 10 | 2158 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_testbench_clock is
generic (
PHASE_DELAY : string := "0 ns";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "20 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
clock_out : out std_logic;
aclr_out : out std_logic;
tb_aclr : out std_logic;
reg_aclr_out : out std_logic
);
end entity alt_dspbuilder_testbench_clock;
architecture rtl of alt_dspbuilder_testbench_clock is
component alt_dspbuilder_testbench_clock_GNCGUFKHRR is
generic (
PHASE_DELAY : string := "0 fs";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "20 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
aclr_out : out std_logic;
clock_out : out std_logic;
reg_aclr_out : out std_logic;
tb_aclr : out std_logic
);
end component alt_dspbuilder_testbench_clock_GNCGUFKHRR;
begin
alt_dspbuilder_testbench_clock_GNCGUFKHRR_0: if ((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "20 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)) generate
inst_alt_dspbuilder_testbench_clock_GNCGUFKHRR_0: alt_dspbuilder_testbench_clock_GNCGUFKHRR
generic map(PHASE_DELAY => "0 fs", SIMULATION_START_CYCLE => 4, RESET_LATENCY => 0, INITIAL_CLOCK => 1, PERIOD => "20 ns", RESET_REGISTER_CASCADE_DEPTH => 0)
port map(aclr_out => aclr_out, clock_out => clock_out, reg_aclr_out => reg_aclr_out, tb_aclr => tb_aclr);
end generate;
assert not (((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "20 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/hdl/alt_dspbuilder_testbench_clock.vhd | 10 | 2218 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_testbench_clock is
generic (
PHASE_DELAY : string := "0 ns";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "20 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
clock_out : out std_logic;
aclr_out : out std_logic;
tb_aclr : out std_logic;
reg_aclr_out : out std_logic
);
end entity alt_dspbuilder_testbench_clock;
architecture rtl of alt_dspbuilder_testbench_clock is
component alt_dspbuilder_testbench_clock_GNXGQJH2DS is
generic (
PHASE_DELAY : string := "0 fs";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "7.499999999999999 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
aclr_out : out std_logic;
clock_out : out std_logic;
reg_aclr_out : out std_logic;
tb_aclr : out std_logic
);
end component alt_dspbuilder_testbench_clock_GNXGQJH2DS;
begin
alt_dspbuilder_testbench_clock_GNXGQJH2DS_0: if ((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "7.499999999999999 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)) generate
inst_alt_dspbuilder_testbench_clock_GNXGQJH2DS_0: alt_dspbuilder_testbench_clock_GNXGQJH2DS
generic map(PHASE_DELAY => "0 fs", SIMULATION_START_CYCLE => 4, RESET_LATENCY => 0, INITIAL_CLOCK => 1, PERIOD => "7.499999999999999 ns", RESET_REGISTER_CASCADE_DEPTH => 0)
port map(aclr_out => aclr_out, clock_out => clock_out, reg_aclr_out => reg_aclr_out, tb_aclr => tb_aclr);
end generate;
assert not (((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "7.499999999999999 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/db/alt_dspbuilder_testbench_clock.vhd | 10 | 2218 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_testbench_clock is
generic (
PHASE_DELAY : string := "0 ns";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "20 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
clock_out : out std_logic;
aclr_out : out std_logic;
tb_aclr : out std_logic;
reg_aclr_out : out std_logic
);
end entity alt_dspbuilder_testbench_clock;
architecture rtl of alt_dspbuilder_testbench_clock is
component alt_dspbuilder_testbench_clock_GNXGQJH2DS is
generic (
PHASE_DELAY : string := "0 fs";
SIMULATION_START_CYCLE : natural := 4;
RESET_LATENCY : natural := 0;
INITIAL_CLOCK : natural := 1;
PERIOD : string := "7.499999999999999 ns";
RESET_REGISTER_CASCADE_DEPTH : natural := 0
);
port (
aclr_out : out std_logic;
clock_out : out std_logic;
reg_aclr_out : out std_logic;
tb_aclr : out std_logic
);
end component alt_dspbuilder_testbench_clock_GNXGQJH2DS;
begin
alt_dspbuilder_testbench_clock_GNXGQJH2DS_0: if ((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "7.499999999999999 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)) generate
inst_alt_dspbuilder_testbench_clock_GNXGQJH2DS_0: alt_dspbuilder_testbench_clock_GNXGQJH2DS
generic map(PHASE_DELAY => "0 fs", SIMULATION_START_CYCLE => 4, RESET_LATENCY => 0, INITIAL_CLOCK => 1, PERIOD => "7.499999999999999 ns", RESET_REGISTER_CASCADE_DEPTH => 0)
port map(aclr_out => aclr_out, clock_out => clock_out, reg_aclr_out => reg_aclr_out, tb_aclr => tb_aclr);
end generate;
assert not (((PHASE_DELAY = "0 fs") and (SIMULATION_START_CYCLE = 4) and (RESET_LATENCY = 0) and (INITIAL_CLOCK = 1) and (PERIOD = "7.499999999999999 ns") and (RESET_REGISTER_CASCADE_DEPTH = 0)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_port_GNPWNZWFO7.vhd | 2 | 489 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_port_GNPWNZWFO7 is
port(
input : in std_logic_vector(16 downto 0);
output : out std_logic_vector(16 downto 0));
end entity;
architecture rtl of alt_dspbuilder_port_GNPWNZWFO7 is
Begin
-- Straight Bypass block
output <= input;
end architecture; | mit |
Siliciumer/DOS-Mario-FPGA | DOS_Mario.srcs/sources_1/ip/dist_mem_gen_1/dist_mem_gen_v8_0_10/hdl/dist_mem_gen_v8_0.vhd | 3 | 17726 | `protect begin_protected
`protect version = 1
`protect encrypt_agent = "XILINX"
`protect encrypt_agent_info = "Xilinx Encryption Tool 2014"
`protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64)
`protect key_block
TUg3INHh1m7IhzJTWhl4hakhjur7Vc43ogrhEddqQLKQ5cTmQJLyY/O39MHvxAMR2gKZYkMnwG2l
6cfBg6sy6w==
`protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128)
`protect key_block
Y/ia27A6wO8jmiJeDD7eisp/o0DINS9aBVInHA54TUKf2WoIq6hh9BVkHnKwsRC6y0ISNQHYfAzE
PTfro7nWLiogO1UdUR6Fdg0dugY297GMGNSgJp4hSjDcncspoXCIzLXdW36IFe/bIH2I6rVCdQGq
Bfb5Gy8ISAcPnQqsvfA=
`protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128)
`protect key_block
kz0wef7kcYmKk02nW3FHEht391vWQJY92Du/ZIt2m7OdokLfO6Gv5DKbZwOuyO+yXdcUUdWHG1Hg
t7gRWxEAkdlL4/9TviviX6GS9QtH9m8xJMYQY/3evLZuJv2spaJpj9XdTT9hQlWB3KOO/c4zrwkZ
4xmqwjxejGJsb+FM5sQ=
`protect key_keyowner = "Aldec", key_keyname= "ALDEC15_001", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256)
`protect key_block
dkOPiv2V30YAr2yuyXphkE0lv+yYw3tHqA0yhJuJHSglEGmP0QTtSBhDMb+PGYV8NkSI8H4eVQnW
syXqKR2vhzWnJ0zRCtYlN/vMwjrZm35SHeCGC3CWsCXPg5fWlXJzxzDU4vP5OD4maGH8Ec1mMktz
gRtGcXleZSmjeO8rz4N7Zl+e7irHttUbvM4i2n84/VDlVWomp1+ZWh9VIiNadiVaF4GeyDmNDujq
KQ5joBbbe4y2hoQTmu/mtfDUMZGGvUoImw+vazPIlVHH7z5MXdEpWiEKnH14qDniwjKNjq35y1au
oZwXSsG5YkjKitE/OpWH3/uszWGUyrd02WCk7g==
`protect key_keyowner = "ATRENTA", key_keyname= "ATR-SG-2015-RSA-3", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256)
`protect key_block
YPeWnh+rwbGP5pImDI2d2//p4f/IpBCUCuKd/hCDk+2PHES852iLZdoJloFPd1161LDanxCbRI/P
1nJbZi1obBy3B4ujpRc/a43DfJ7dxQHZtNjYKs9a//VCBS+23vBkqK8aImNg1Enfw1pvrz0j2FHW
6mOF4jYRiH5WXOIIuBHFpcloerzd0g9AWQUxk/T+WCSCqmYWUEWg517jiOu9LvsqInAOCZ5t0SWx
1A5jeWyL+aVl7ZT62sEEoT6kmD5KQH/kGkUI9nUWAJWa2/k8yR8JxLoz3s/KFTMxpyrcHKw2Mba6
kP0rB/IanjAxmkWkkMe1p+USCoEpuIy40jLfFA==
`protect key_keyowner = "Xilinx", key_keyname= "xilinx_2015_12", key_method = "rsa"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256)
`protect key_block
RAvb/4vlo/jbWHAYh5QgcKvlffxbz7XViXDEv3yRgfG8bjy/C4S5r75Las5nWMxVHPrwZeDhcP3y
eWa+WDaWFUlrAa+9O9M4rBFwyH6vPJbUtAoKNZ7YapE5ME95Y4BKJQml4a6fc9hGkDkuDTohQL+e
h1h5j2N9YkWtTKH92l+ACHoeTq3jJ7tMmqXWKNWTJN+Wsc2eZhJhClQDjPMSNa3YztWgvs7raemX
fIP1EibAwQWW24hS/XYADD61gRmAHEtBDkKgnD8twsgno/WaAeXts9/ZgPRMk/yeorVQWfEagZMk
7092cD8GLSfd1pkbwQlcvmGKY4sXaCSxbhTWwA==
`protect data_method = "AES128-CBC"
`protect encoding = (enctype = "BASE64", line_length = 76, bytes = 10992)
`protect data_block
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
`protect end_protected
| mit |
biximilien/ArithmeticLogicUnit | and_gate.vhd | 1 | 252 | library ieee;
use ieee.std_logic_1164.all;
entity and_gate is
port (
x, y : in std_ulogic;
z : out std_ulogic
);
end entity and_gate;
architecture and_gate_impl of and_gate is
begin
z <= x and y;
end architecture and_gate_impl;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/db/alt_dspbuilder_MultAdd.vhd | 12 | 23128 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library ieee ;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_arith.all;
USE ieee.std_logic_signed.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_MultAdd is
generic (
width_a : positive :=8;
width_r : positive :=17;
direction : AddSubOperator := AddAdd;
nMult : positive := 2;
intended_device_family : string :="Stratix";
use_dedicated_circuitry : natural :=0;
representation : string :="SIGNED";
regstruct : registerstructure :=NoRegister
);
port (
dat1aa : in std_logic_vector (width_a-1 downto 0);
dat1ab : in std_logic_vector (width_a-1 downto 0);
dat2aa : in std_logic_vector (width_a-1 downto 0);
dat2ab : in std_logic_vector (width_a-1 downto 0);
dat3aa : in std_logic_vector (width_a-1 downto 0);
dat3ab : in std_logic_vector (width_a-1 downto 0);
dat4aa : in std_logic_vector (width_a-1 downto 0);
dat4ab : in std_logic_vector (width_a-1 downto 0);
clock : in std_logic ;
ena : in std_logic ;
part_sclr : in std_logic ;
aclr : in std_logic ;
user_aclr : in std_logic ;
result : out std_logic_vector (width_r-1 downto 0)
);
end alt_dspbuilder_MultAdd;
architecture MultAdd_synth of alt_dspbuilder_MultAdd is
function RegStatus(r:registerstructure) return std_logic_vector is
variable res : std_logic_vector(2 downto 0) :=(others=>'0');
begin
if ((r=InputsMultiplierandAdder)or(r=InputsOnly)or(r=InputsandMultiplier)or(r=InputsandAdder)) then
res(0) := '1';
else
res(0) := '0';
end if;
if ((r=InputsMultiplierandAdder) or (r=MultiplierOnly) or (r=InputsandMultiplier) or (r=MultiplierandAdder)) then
res(1) := '1';
else
res(1) := '0';
end if;
if (r=InputsMultiplierandAdder) or
(r=AdderOnly) or
(r=InputsandAdder) or
(r=MultiplierandAdder) then
res(2) := '1';
else
res(2) := '0';
end if;
return res;
end ;
constant regstat : std_logic_vector(2 downto 0) := RegStatus(regstruct);
signal regdat1aa : std_logic_vector (width_a-1 downto 0);
signal regdat1ab : std_logic_vector (width_a-1 downto 0);
signal regdat2aa : std_logic_vector (width_a-1 downto 0);
signal regdat2ab : std_logic_vector (width_a-1 downto 0);
signal regdat3aa : std_logic_vector (width_a-1 downto 0);
signal regdat3ab : std_logic_vector (width_a-1 downto 0);
signal regdat4aa : std_logic_vector (width_a-1 downto 0);
signal regdat4ab : std_logic_vector (width_a-1 downto 0);
signal A1xB : std_logic_vector (2*width_a-1 downto 0);
signal A2xB : std_logic_vector (2*width_a-1 downto 0);
signal A3xB : std_logic_vector (2*width_a-1 downto 0);
signal A4xB : std_logic_vector (2*width_a-1 downto 0);
signal A1xBSExt : std_logic_vector (2*width_a downto 0);
signal A2xBSExt : std_logic_vector (2*width_a downto 0);
signal A3xBSExt : std_logic_vector (2*width_a downto 0);
signal A4xBSExt : std_logic_vector (2*width_a downto 0);
signal FirstAdd : std_logic_vector (2*width_a downto 0);
signal SecondAdd : std_logic_vector (2*width_a downto 0);
signal FirstAddSExt : std_logic_vector (2*width_a+1 downto 0);
signal SecondAddSExt : std_logic_vector (2*width_a+1 downto 0);
signal AllZero : std_logic_vector (2*width_a downto 0);
signal AddAll : std_logic_vector (width_r-1 downto 0);
signal aclr_i : std_logic;
begin
aclr_i <= aclr or user_aclr;
geab: if use_dedicated_circuitry>0 or representation = "UNSIGNED" generate
U0:alt_dspbuilder_MultAddMF generic map (
width_a => width_a ,
width_r => width_r ,
direction => direction ,
nMult => nMult ,
intended_device_family => intended_device_family,
representation => representation ,
regstruct => regstruct )
port map (
clock => clock ,
ena => ena ,
aclr => aclr_i ,
dat1aa => dat1aa ,
dat1ab => dat1ab ,
dat2aa => dat2aa ,
dat2ab => dat2ab ,
dat3aa => dat3aa ,
dat3ab => dat3ab ,
dat4aa => dat4aa ,
dat4ab => dat4ab ,
result => result );
end generate geab;
gneab: if use_dedicated_circuitry=0 and representation /= "UNSIGNED" generate
AllZero <= (others=>'0');
gc:if (regstruct=NoRegister) generate
regdat1aa <= dat1aa;
regdat1ab <= dat1ab;
regdat2aa <= dat2aa;
regdat2ab <= dat2ab;
A1xB <= regdat1aa*regdat1ab;
A1xBSExt(2*width_a-1 downto 0) <= A1xB(2*width_a-1 downto 0);
A1xBSExt(2*width_a) <= A1xBSExt(2*width_a-1);
A2xB <= regdat2aa*regdat2ab;
A2xBSExt(2*width_a-1 downto 0) <= A2xB(2*width_a-1 downto 0);
A2xBSExt(2*width_a) <= A2xBSExt(2*width_a-1);
result <= AddAll;
g2x:if (nMult=2) generate
ga:if (direction=AddAdd) or (direction=AddSub) generate
AddAll <= A1xBSExt+A2xBSExt;
end generate ga;
gs:if (direction=SubSub) or (direction=SubAdd)generate
AddAll <= A1xBSExt-A2xBSExt;
end generate gs;
end generate g2x;
g3x:if (nMult=3) generate
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
A3xB <= regdat3aa*regdat3ab;
A3xBSExt(2*width_a-1 downto 0) <= A3xB(2*width_a-1 downto 0);
A3xBSExt(2*width_a) <= A3xBSExt(2*width_a-1);
ga:if (direction=AddAdd) or (direction=AddSub) generate
FirstAdd <= A1xBSExt+A2xBSExt;
end generate ga;
gs:if (direction=SubSub) or (direction=SubAdd)generate
FirstAdd <= A1xBSExt-A2xBSExt;
end generate gs;
SecondAdd <= AllZero+A3xBSExt;
FirstAddSExt(2*width_a downto 0) <= FirstAdd(2*width_a downto 0);
FirstAddSExt(2*width_a+1) <= FirstAddSExt(2*width_a);
SecondAddSExt(2*width_a downto 0) <= SecondAdd(2*width_a downto 0);
SecondAddSExt(2*width_a+1) <= SecondAddSExt(2*width_a);
AddAll <= FirstAddSExt+SecondAddSExt;
end generate g3x;
g4x:if (nMult=4) generate
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
regdat4aa <= dat4aa;
regdat4ab <= dat4ab;
A3xB <= regdat3aa*regdat3ab;
A3xBSExt(2*width_a-1 downto 0) <= A3xB(2*width_a-1 downto 0);
A3xBSExt(2*width_a) <= A3xBSExt(2*width_a-1);
A4xB <= regdat4aa*regdat4ab;
A4xBSExt(2*width_a-1 downto 0) <= A4xB(2*width_a-1 downto 0);
A4xBSExt(2*width_a) <= A4xBSExt(2*width_a-1);
gaa:if (direction=AddAdd) generate
FirstAdd <= A1xBSExt+A2xBSExt;
SecondAdd <= A3xBSExt+A4xBSExt;
end generate gaa;
gax:if (direction=AddSub) generate
FirstAdd <= A1xBSExt+A2xBSExt;
SecondAdd <= A3xBSExt-A4xBSExt;
end generate gax;
gss:if (direction=SubSub) generate
FirstAdd <= A1xBSExt-A2xBSExt;
SecondAdd <= A3xBSExt-A4xBSExt;
end generate gss;
gsa:if (direction=SubAdd) generate
FirstAdd <= A1xBSExt-A2xBSExt;
SecondAdd <= A3xBSExt+A4xBSExt;
end generate gsa;
FirstAddSExt(2*width_a downto 0) <= FirstAdd(2*width_a downto 0);
FirstAddSExt(2*width_a+1) <= FirstAddSExt(2*width_a);
SecondAddSExt(2*width_a downto 0) <= SecondAdd(2*width_a downto 0);
SecondAddSExt(2*width_a+1) <= SecondAddSExt(2*width_a);
AddAll <= FirstAddSExt+SecondAddSExt;
end generate g4x;
end generate gc;
gcr:if (regstruct/=NoRegister)and(regstruct/=InputsMultiplierandAdder) generate
result <= AddAll;
gci:if regstat(0)='0' generate
regdat1aa <= dat1aa;
regdat1ab <= dat1ab;
regdat2aa <= dat2aa;
regdat2ab <= dat2ab;
end generate gci;
gcr:if regstat(0)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
regdat1aa <= (others=>'0');
regdat1ab <= (others=>'0');
regdat2aa <= (others=>'0');
regdat2ab <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
regdat1aa <= (others=>'0');
regdat1ab <= (others=>'0');
regdat2aa <= (others=>'0');
regdat2ab <= (others=>'0');
elsif (ena='1') then
regdat1aa <= dat1aa;
regdat1ab <= dat1ab;
regdat2aa <= dat2aa;
regdat2ab <= dat2ab;
end if ;
end if ;
end process ;
end generate gcr;
gmc: if regstat(1)='0' generate
A1xB <= regdat1aa*regdat1ab;
A2xB <= regdat2aa*regdat2ab;
end generate gmc;
gmr: if regstat(1)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
A1xB <= (others=>'0');
A2xB <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
A1xB <= (others=>'0');
A2xB <= (others=>'0');
elsif (ena='1') then
A1xB <= regdat1aa*regdat1ab;
A2xB <= regdat2aa*regdat2ab;
end if ;
end if ;
end process ;
end generate gmr;
A1xBSExt(2*width_a-1 downto 0) <= A1xB(2*width_a-1 downto 0);
A1xBSExt(2*width_a) <= A1xBSExt(2*width_a-1);
A2xBSExt(2*width_a-1 downto 0) <= A2xB(2*width_a-1 downto 0);
A2xBSExt(2*width_a) <= A2xBSExt(2*width_a-1);
g2x:if (nMult=2) generate
ga:if (direction=AddAdd) or (direction=AddSub) generate
gac:if regstat(2)='0' generate
AddAll <= A1xBSExt+A2xBSExt;
end generate gac;
gar:if regstat(2)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= A1xBSExt+A2xBSExt;
end if ;
end if ;
end process ;
end generate gar;
end generate ga;
gs:if (direction=SubSub) or (direction=SubAdd)generate
gac:if regstat(2)='0' generate
AddAll <= A1xBSExt-A2xBSExt;
end generate gac;
gar:if regstat(2)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= A1xBSExt-A2xBSExt;
end if ;
end if ;
end process ;
end generate gar;
end generate gs;
end generate g2x;
g3x:if (nMult=3) generate
gci:if regstat(0)='0' generate
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
end generate gci;
gri:if regstat(0)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
elsif (ena='1') then
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
end if ;
end if ;
end process ;
end generate gri;
gmc: if regstat(1)='0' generate
A3xB <= regdat3aa*regdat3ab;
end generate gmc;
gmr: if regstat(1)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
A3xB <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
A3xB <= (others=>'0');
elsif (ena='1') then
A3xB <= regdat3aa*regdat3ab;
end if ;
end if ;
end process ;
end generate gmr;
A3xBSExt(2*width_a-1 downto 0) <= A3xB(2*width_a-1 downto 0);
A3xBSExt(2*width_a) <= A3xBSExt(2*width_a-1);
SecondAdd <= AllZero+A3xBSExt;
FirstAddSExt(2*width_a downto 0) <= FirstAdd(2*width_a downto 0);
FirstAddSExt(2*width_a+1) <= FirstAddSExt(2*width_a);
SecondAddSExt(2*width_a downto 0) <= SecondAdd(2*width_a downto 0);
SecondAddSExt(2*width_a+1) <= SecondAddSExt(2*width_a);
ga:if (direction=AddAdd) or (direction=AddSub) generate
FirstAdd <= A1xBSExt+A2xBSExt;
end generate ga;
gs:if (direction=SubSub) or (direction=SubAdd)generate
FirstAdd <= A1xBSExt-A2xBSExt;
end generate gs;
gac:if regstat(2)='0' generate
AddAll <= FirstAddSExt+SecondAddSExt;
end generate gac;
gar:if regstat(2)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= FirstAddSExt+SecondAddSExt;
end if ;
end if ;
end process ;
end generate gar;
end generate g3x;
g4x:if (nMult=4) generate
gci:if regstat(0)='0' generate
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
regdat4aa <= dat4aa;
regdat4ab <= dat4ab;
end generate gci;
gri:if regstat(0)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
regdat4aa <= (others=>'0');
regdat4ab <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
regdat4aa <= (others=>'0');
regdat4ab <= (others=>'0');
elsif (ena='1') then
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
regdat4aa <= dat4aa;
regdat4ab <= dat4ab;
end if ;
end if ;
end process ;
end generate gri;
gmc: if regstat(1)='0' generate
A3xB <= regdat3aa*regdat3ab;
A4xB <= regdat4aa*regdat4ab;
end generate gmc;
gmr: if regstat(1)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
A3xB <= (others=>'0');
A4xB <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
A3xB <= (others=>'0');
A4xB <= (others=>'0');
elsif (ena='1') then
A3xB <= regdat3aa*regdat3ab;
A4xB <= regdat4aa*regdat4ab;
end if ;
end if ;
end process ;
end generate gmr;
A3xBSExt(2*width_a-1 downto 0) <= A3xB(2*width_a-1 downto 0);
A3xBSExt(2*width_a) <= A3xBSExt(2*width_a-1);
A4xBSExt(2*width_a-1 downto 0) <= A4xB(2*width_a-1 downto 0);
A4xBSExt(2*width_a) <= A4xBSExt(2*width_a-1);
gaa:if (direction=AddAdd) generate
FirstAdd <= A1xBSExt+A2xBSExt;
SecondAdd <= A3xBSExt+A4xBSExt;
end generate gaa;
gax:if (direction=AddSub) generate
FirstAdd <= A1xBSExt+A2xBSExt;
SecondAdd <= A3xBSExt-A4xBSExt;
end generate gax;
gss:if (direction=SubSub) generate
FirstAdd <= A1xBSExt-A2xBSExt;
SecondAdd <= A3xBSExt-A4xBSExt;
end generate gss;
gsa:if (direction=SubAdd) generate
FirstAdd <= A1xBSExt-A2xBSExt;
SecondAdd <= A3xBSExt+A4xBSExt;
end generate gsa;
FirstAddSExt(2*width_a downto 0) <= FirstAdd(2*width_a downto 0);
FirstAddSExt(2*width_a+1) <= FirstAddSExt(2*width_a);
SecondAddSExt(2*width_a downto 0) <= SecondAdd(2*width_a downto 0);
SecondAddSExt(2*width_a+1) <= SecondAddSExt(2*width_a);
gac:if regstat(2)='0' generate
AddAll <= FirstAddSExt+SecondAddSExt;
end generate gac;
gar:if regstat(2)='1' generate
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= FirstAddSExt+SecondAddSExt;
end if ;
end if ;
end process ;
end generate gar;
end generate g4x;
end generate gcr;
gr:if (regstruct=InputsMultiplierandAdder) generate
result <= AddAll;
process(clock,aclr_i)
begin
if aclr_i='1' then
regdat1aa <= (others=>'0');
regdat1ab <= (others=>'0');
regdat2aa <= (others=>'0');
regdat2ab <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
regdat1aa <= (others=>'0');
regdat1ab <= (others=>'0');
regdat2aa <= (others=>'0');
regdat2ab <= (others=>'0');
elsif (ena='1') then
regdat1aa <= dat1aa;
regdat1ab <= dat1ab;
regdat2aa <= dat2aa;
regdat2ab <= dat2ab;
end if ;
end if ;
end process ;
process(clock,aclr_i)
begin
if aclr_i='1' then
A1xB <= (others=>'0');
A2xB <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
A1xB <= (others=>'0');
A2xB <= (others=>'0');
elsif (ena='1') then
A1xB <= regdat1aa*regdat1ab;
A2xB <= regdat2aa*regdat2ab;
end if ;
end if ;
end process ;
A1xBSExt(2*width_a-1 downto 0) <= A1xB(2*width_a-1 downto 0);
A1xBSExt(2*width_a) <= A1xBSExt(2*width_a-1);
A2xBSExt(2*width_a-1 downto 0) <= A2xB(2*width_a-1 downto 0);
A2xBSExt(2*width_a) <= A2xBSExt(2*width_a-1);
g2x:if (nMult=2) generate
ga:if (direction=AddAdd) or (direction=AddSub) generate
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= A1xBSExt+A2xBSExt;
end if ;
end if ;
end process ;
end generate ga;
gs:if (direction=SubSub) or (direction=SubAdd)generate
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= A1xBSExt-A2xBSExt;
end if ;
end if ;
end process ;
end generate gs;
end generate g2x;
g3x:if (nMult=3) generate
process(clock,aclr_i)
begin
if aclr_i='1' then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
elsif (ena='1') then
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
end if ;
end if ;
end process ;
process(clock,aclr_i)
begin
if aclr_i='1' then
A3xB <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
A3xB <= (others=>'0');
elsif (ena='1') then
A3xB <= regdat3aa*regdat3ab;
end if ;
end if ;
end process ;
A3xBSExt(2*width_a-1 downto 0) <= A3xB(2*width_a-1 downto 0);
A3xBSExt(2*width_a) <= A3xBSExt(2*width_a-1);
SecondAdd <= AllZero+A3xBSExt;
FirstAddSExt(2*width_a downto 0) <= FirstAdd(2*width_a downto 0);
FirstAddSExt(2*width_a+1) <= FirstAddSExt(2*width_a);
SecondAddSExt(2*width_a downto 0) <= SecondAdd(2*width_a downto 0);
SecondAddSExt(2*width_a+1) <= SecondAddSExt(2*width_a);
ga:if (direction=AddAdd) or (direction=AddSub) generate
FirstAdd <= A1xBSExt+A2xBSExt;
end generate ga;
gs:if (direction=SubSub) or (direction=SubAdd)generate
FirstAdd <= A1xBSExt-A2xBSExt;
end generate gs;
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= FirstAddSExt+SecondAddSExt;
end if ;
end if ;
end process ;
end generate g3x;
g4x:if (nMult=4) generate
process(clock,aclr_i)
begin
if aclr_i='1' then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
regdat4aa <= (others=>'0');
regdat4ab <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
regdat3aa <= (others=>'0');
regdat3ab <= (others=>'0');
regdat4aa <= (others=>'0');
regdat4ab <= (others=>'0');
elsif (ena='1') then
regdat3aa <= dat3aa;
regdat3ab <= dat3ab;
regdat4aa <= dat4aa;
regdat4ab <= dat4ab;
end if ;
end if ;
end process ;
process(clock,aclr_i)
begin
if aclr_i='1' then
A3xB <= (others=>'0');
A4xB <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
A3xB <= (others=>'0');
A4xB <= (others=>'0');
elsif (ena='1') then
A3xB <= regdat3aa*regdat3ab;
A4xB <= regdat4aa*regdat4ab;
end if ;
end if ;
end process ;
A3xBSExt(2*width_a-1 downto 0) <= A3xB(2*width_a-1 downto 0);
A3xBSExt(2*width_a) <= A3xBSExt(2*width_a-1);
A4xBSExt(2*width_a-1 downto 0) <= A4xB(2*width_a-1 downto 0);
A4xBSExt(2*width_a) <= A4xBSExt(2*width_a-1);
gaa:if (direction=AddAdd) generate
FirstAdd <= A1xBSExt+A2xBSExt;
SecondAdd <= A3xBSExt+A4xBSExt;
end generate gaa;
gax:if (direction=AddSub) generate
FirstAdd <= A1xBSExt+A2xBSExt;
SecondAdd <= A3xBSExt-A4xBSExt;
end generate gax;
gss:if (direction=SubSub) generate
FirstAdd <= A1xBSExt-A2xBSExt;
SecondAdd <= A3xBSExt-A4xBSExt;
end generate gss;
gsa:if (direction=SubAdd) generate
FirstAdd <= A1xBSExt-A2xBSExt;
SecondAdd <= A3xBSExt+A4xBSExt;
end generate gsa;
FirstAddSExt(2*width_a downto 0) <= FirstAdd(2*width_a downto 0);
FirstAddSExt(2*width_a+1) <= FirstAddSExt(2*width_a);
SecondAddSExt(2*width_a downto 0) <= SecondAdd(2*width_a downto 0);
SecondAddSExt(2*width_a+1) <= SecondAddSExt(2*width_a);
process(clock,aclr_i)
begin
if aclr_i='1' then
AddAll <= (others=>'0');
elsif clock'event and clock='1' then
if (part_sclr='1') then
AddAll <= (others=>'0');
elsif (ena='1') then
AddAll <= FirstAddSExt+SecondAddSExt;
end if ;
end if ;
end process ;
end generate g4x;
end generate gr;
end generate gneab;
end MultAdd_synth;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/altera_lnsim/generic_mux/_primary.vhd | 5 | 266 | library verilog;
use verilog.vl_types.all;
entity generic_mux is
port(
din : in vl_logic_vector(63 downto 0);
sel : in vl_logic_vector(5 downto 0);
dout : out vl_logic
);
end generic_mux;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/altera_lnsim/altera_arriavgz_pll/_primary.vhd | 5 | 70300 | library verilog;
use verilog.vl_types.all;
entity altera_arriavgz_pll is
generic(
number_of_counters: integer := 18;
number_of_fplls : integer := 1;
number_of_extclks: integer := 4;
number_of_dlls : integer := 2;
number_of_lvds : integer := 4;
pll_auto_clk_sw_en_0: string := "false";
pll_clk_loss_edge_0: string := "both_edges";
pll_clk_loss_sw_en_0: string := "false";
pll_clk_sw_dly_0: integer := 0;
pll_clkin_0_src_0: string := "clk_0";
pll_clkin_1_src_0: string := "clk_0";
pll_manu_clk_sw_en_0: string := "false";
pll_sw_refclk_src_0: string := "clk_0";
pll_auto_clk_sw_en_1: string := "false";
pll_clk_loss_edge_1: string := "both_edges";
pll_clk_loss_sw_en_1: string := "false";
pll_clk_sw_dly_1: integer := 0;
pll_clkin_0_src_1: string := "clk_1";
pll_clkin_1_src_1: string := "clk_1";
pll_manu_clk_sw_en_1: string := "false";
pll_sw_refclk_src_1: string := "clk_1";
pll_output_clock_frequency_0: string := "700.0 MHz";
reference_clock_frequency_0: string := "700.0 MHz";
mimic_fbclk_type_0: string := "gclk";
dsm_accumulator_reset_value_0: integer := 0;
forcelock_0 : string := "false";
nreset_invert_0 : string := "false";
pll_atb_0 : integer := 0;
pll_bwctrl_0 : integer := 1000;
pll_cmp_buf_dly_0: string := "0 ps";
pll_cp_comp_0 : string := "true";
pll_cp_current_0: integer := 20;
pll_ctrl_override_setting_0: string := "true";
pll_dsm_dither_0: string := "disable";
pll_dsm_out_sel_0: string := "disable";
pll_dsm_reset_0 : string := "false";
pll_ecn_bypass_0: string := "false";
pll_ecn_test_en_0: string := "false";
pll_enable_0 : string := "true";
pll_fbclk_mux_1_0: string := "fb";
pll_fbclk_mux_2_0: string := "m_cnt";
pll_fractional_carry_out_0: integer := 24;
pll_fractional_division_0: integer := 1;
pll_fractional_value_ready_0: string := "true";
pll_lf_testen_0 : string := "false";
pll_lock_fltr_cfg_0: integer := 25;
pll_lock_fltr_test_0: string := "false";
pll_m_cnt_bypass_en_0: string := "false";
pll_m_cnt_coarse_dly_0: string := "0 ps";
pll_m_cnt_fine_dly_0: string := "0 ps";
pll_m_cnt_hi_div_0: integer := 3;
pll_m_cnt_in_src_0: string := "ph_mux_clk";
pll_m_cnt_lo_div_0: integer := 3;
pll_m_cnt_odd_div_duty_en_0: string := "false";
pll_m_cnt_ph_mux_prst_0: integer := 0;
pll_m_cnt_prst_0: integer := 256;
pll_n_cnt_bypass_en_0: string := "true";
pll_n_cnt_coarse_dly_0: string := "0 ps";
pll_n_cnt_fine_dly_0: string := "0 ps";
pll_n_cnt_hi_div_0: integer := 1;
pll_n_cnt_lo_div_0: integer := 1;
pll_n_cnt_odd_div_duty_en_0: string := "false";
pll_ref_buf_dly_0: string := "0 ps";
pll_reg_boost_0 : integer := 0;
pll_regulator_bypass_0: string := "false";
pll_ripplecap_ctrl_0: integer := 0;
pll_slf_rst_0 : string := "false";
pll_tclk_mux_en_0: string := "false";
pll_tclk_sel_0 : string := "n_src";
pll_test_enable_0: string := "false";
pll_testdn_enable_0: string := "false";
pll_testup_enable_0: string := "false";
pll_unlock_fltr_cfg_0: integer := 1;
pll_vco_div_0 : integer := 0;
pll_vco_ph0_en_0: string := "true";
pll_vco_ph1_en_0: string := "true";
pll_vco_ph2_en_0: string := "true";
pll_vco_ph3_en_0: string := "true";
pll_vco_ph4_en_0: string := "true";
pll_vco_ph5_en_0: string := "true";
pll_vco_ph6_en_0: string := "true";
pll_vco_ph7_en_0: string := "true";
pll_vctrl_test_voltage_0: integer := 750;
vccd0g_atb_0 : string := "disable";
vccd0g_output_0 : integer := 0;
vccd1g_atb_0 : string := "disable";
vccd1g_output_0 : integer := 0;
vccm1g_tap_0 : integer := 2;
vccr_pd_0 : string := "false";
vcodiv_override_0: string := "false";
sim_use_fast_model_0: string := "false";
pll_output_clock_frequency_1: string := "300.0 MHz";
reference_clock_frequency_1: string := "100.0 MHz";
mimic_fbclk_type_1: string := "gclk";
dsm_accumulator_reset_value_1: integer := 0;
forcelock_1 : string := "false";
nreset_invert_1 : string := "false";
pll_atb_1 : integer := 0;
pll_bwctrl_1 : integer := 1000;
pll_cmp_buf_dly_1: string := "0 ps";
pll_cp_comp_1 : string := "true";
pll_cp_current_1: integer := 30;
pll_ctrl_override_setting_1: string := "false";
pll_dsm_dither_1: string := "disable";
pll_dsm_out_sel_1: string := "disable";
pll_dsm_reset_1 : string := "false";
pll_ecn_bypass_1: string := "false";
pll_ecn_test_en_1: string := "false";
pll_enable_1 : string := "false";
pll_fbclk_mux_1_1: string := "glb";
pll_fbclk_mux_2_1: string := "fb_1";
pll_fractional_carry_out_1: integer := 24;
pll_fractional_division_1: integer := 1;
pll_fractional_value_ready_1: string := "true";
pll_lf_testen_1 : string := "false";
pll_lock_fltr_cfg_1: integer := 25;
pll_lock_fltr_test_1: string := "false";
pll_m_cnt_bypass_en_1: string := "false";
pll_m_cnt_coarse_dly_1: string := "0 ps";
pll_m_cnt_fine_dly_1: string := "0 ps";
pll_m_cnt_hi_div_1: integer := 2;
pll_m_cnt_in_src_1: string := "ph_mux_clk";
pll_m_cnt_lo_div_1: integer := 1;
pll_m_cnt_odd_div_duty_en_1: string := "true";
pll_m_cnt_ph_mux_prst_1: integer := 0;
pll_m_cnt_prst_1: integer := 256;
pll_n_cnt_bypass_en_1: string := "true";
pll_n_cnt_coarse_dly_1: string := "0 ps";
pll_n_cnt_fine_dly_1: string := "0 ps";
pll_n_cnt_hi_div_1: integer := 256;
pll_n_cnt_lo_div_1: integer := 256;
pll_n_cnt_odd_div_duty_en_1: string := "false";
pll_ref_buf_dly_1: string := "0 ps";
pll_reg_boost_1 : integer := 0;
pll_regulator_bypass_1: string := "false";
pll_ripplecap_ctrl_1: integer := 0;
pll_slf_rst_1 : string := "false";
pll_tclk_mux_en_1: string := "false";
pll_tclk_sel_1 : string := "n_src";
pll_test_enable_1: string := "false";
pll_testdn_enable_1: string := "false";
pll_testup_enable_1: string := "false";
pll_unlock_fltr_cfg_1: integer := 2;
pll_vco_div_1 : integer := 1;
pll_vco_ph0_en_1: string := "true";
pll_vco_ph1_en_1: string := "true";
pll_vco_ph2_en_1: string := "true";
pll_vco_ph3_en_1: string := "true";
pll_vco_ph4_en_1: string := "true";
pll_vco_ph5_en_1: string := "true";
pll_vco_ph6_en_1: string := "true";
pll_vco_ph7_en_1: string := "true";
pll_vctrl_test_voltage_1: integer := 750;
vccd0g_atb_1 : string := "disable";
vccd0g_output_1 : integer := 0;
vccd1g_atb_1 : string := "disable";
vccd1g_output_1 : integer := 0;
vccm1g_tap_1 : integer := 2;
vccr_pd_1 : string := "false";
vcodiv_override_1: string := "false";
sim_use_fast_model_1: string := "false";
output_clock_frequency_0: string := "100.0 MHz";
enable_output_counter_0: string := "true";
phase_shift_0 : string := "0 ps";
duty_cycle_0 : integer := 50;
c_cnt_coarse_dly_0: string := "0 ps";
c_cnt_fine_dly_0: string := "0 ps";
c_cnt_in_src_0 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_0: integer := 0;
c_cnt_prst_0 : integer := 1;
cnt_fpll_src_0 : string := "fpll_0";
dprio0_cnt_bypass_en_0: string := "true";
dprio0_cnt_hi_div_0: integer := 3;
dprio0_cnt_lo_div_0: integer := 3;
dprio0_cnt_odd_div_even_duty_en_0: string := "false";
dprio1_cnt_bypass_en_0: vl_notype;
dprio1_cnt_hi_div_0: vl_notype;
dprio1_cnt_lo_div_0: vl_notype;
dprio1_cnt_odd_div_even_duty_en_0: vl_notype;
output_clock_frequency_1: string := "0 ps";
enable_output_counter_1: string := "true";
phase_shift_1 : string := "0 ps";
duty_cycle_1 : integer := 50;
c_cnt_coarse_dly_1: string := "0 ps";
c_cnt_fine_dly_1: string := "0 ps";
c_cnt_in_src_1 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_1: integer := 0;
c_cnt_prst_1 : integer := 1;
cnt_fpll_src_1 : string := "fpll_0";
dprio0_cnt_bypass_en_1: string := "true";
dprio0_cnt_hi_div_1: integer := 2;
dprio0_cnt_lo_div_1: integer := 1;
dprio0_cnt_odd_div_even_duty_en_1: string := "true";
dprio1_cnt_bypass_en_1: vl_notype;
dprio1_cnt_hi_div_1: vl_notype;
dprio1_cnt_lo_div_1: vl_notype;
dprio1_cnt_odd_div_even_duty_en_1: vl_notype;
output_clock_frequency_2: string := "0 ps";
enable_output_counter_2: string := "true";
phase_shift_2 : string := "0 ps";
duty_cycle_2 : integer := 50;
c_cnt_coarse_dly_2: string := "0 ps";
c_cnt_fine_dly_2: string := "0 ps";
c_cnt_in_src_2 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_2: integer := 0;
c_cnt_prst_2 : integer := 1;
cnt_fpll_src_2 : string := "fpll_0";
dprio0_cnt_bypass_en_2: string := "true";
dprio0_cnt_hi_div_2: integer := 1;
dprio0_cnt_lo_div_2: integer := 1;
dprio0_cnt_odd_div_even_duty_en_2: string := "false";
dprio1_cnt_bypass_en_2: vl_notype;
dprio1_cnt_hi_div_2: vl_notype;
dprio1_cnt_lo_div_2: vl_notype;
dprio1_cnt_odd_div_even_duty_en_2: vl_notype;
output_clock_frequency_3: string := "0 ps";
enable_output_counter_3: string := "true";
phase_shift_3 : string := "0 ps";
duty_cycle_3 : integer := 50;
c_cnt_coarse_dly_3: string := "0 ps";
c_cnt_fine_dly_3: string := "0 ps";
c_cnt_in_src_3 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_3: integer := 0;
c_cnt_prst_3 : integer := 1;
cnt_fpll_src_3 : string := "fpll_0";
dprio0_cnt_bypass_en_3: string := "false";
dprio0_cnt_hi_div_3: integer := 1;
dprio0_cnt_lo_div_3: integer := 1;
dprio0_cnt_odd_div_even_duty_en_3: string := "false";
dprio1_cnt_bypass_en_3: vl_notype;
dprio1_cnt_hi_div_3: vl_notype;
dprio1_cnt_lo_div_3: vl_notype;
dprio1_cnt_odd_div_even_duty_en_3: vl_notype;
output_clock_frequency_4: string := "0 ps";
enable_output_counter_4: string := "true";
phase_shift_4 : string := "0 ps";
duty_cycle_4 : integer := 50;
c_cnt_coarse_dly_4: string := "0 ps";
c_cnt_fine_dly_4: string := "0 ps";
c_cnt_in_src_4 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_4: integer := 0;
c_cnt_prst_4 : integer := 1;
cnt_fpll_src_4 : string := "fpll_0";
dprio0_cnt_bypass_en_4: string := "false";
dprio0_cnt_hi_div_4: integer := 1;
dprio0_cnt_lo_div_4: integer := 1;
dprio0_cnt_odd_div_even_duty_en_4: string := "false";
dprio1_cnt_bypass_en_4: vl_notype;
dprio1_cnt_hi_div_4: vl_notype;
dprio1_cnt_lo_div_4: vl_notype;
dprio1_cnt_odd_div_even_duty_en_4: vl_notype;
output_clock_frequency_5: string := "0 ps";
enable_output_counter_5: string := "true";
phase_shift_5 : string := "0 ps";
duty_cycle_5 : integer := 50;
c_cnt_coarse_dly_5: string := "0 ps";
c_cnt_fine_dly_5: string := "0 ps";
c_cnt_in_src_5 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_5: integer := 0;
c_cnt_prst_5 : integer := 1;
cnt_fpll_src_5 : string := "fpll_0";
dprio0_cnt_bypass_en_5: string := "false";
dprio0_cnt_hi_div_5: integer := 1;
dprio0_cnt_lo_div_5: integer := 1;
dprio0_cnt_odd_div_even_duty_en_5: string := "false";
dprio1_cnt_bypass_en_5: vl_notype;
dprio1_cnt_hi_div_5: vl_notype;
dprio1_cnt_lo_div_5: vl_notype;
dprio1_cnt_odd_div_even_duty_en_5: vl_notype;
output_clock_frequency_6: string := "0 ps";
enable_output_counter_6: string := "true";
phase_shift_6 : string := "0 ps";
duty_cycle_6 : integer := 50;
c_cnt_coarse_dly_6: string := "0 ps";
c_cnt_fine_dly_6: string := "0 ps";
c_cnt_in_src_6 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_6: integer := 0;
c_cnt_prst_6 : integer := 1;
cnt_fpll_src_6 : string := "fpll_0";
dprio0_cnt_bypass_en_6: string := "false";
dprio0_cnt_hi_div_6: integer := 1;
dprio0_cnt_lo_div_6: integer := 1;
dprio0_cnt_odd_div_even_duty_en_6: string := "false";
dprio1_cnt_bypass_en_6: vl_notype;
dprio1_cnt_hi_div_6: vl_notype;
dprio1_cnt_lo_div_6: vl_notype;
dprio1_cnt_odd_div_even_duty_en_6: vl_notype;
output_clock_frequency_7: string := "0 ps";
enable_output_counter_7: string := "true";
phase_shift_7 : string := "0 ps";
duty_cycle_7 : integer := 50;
c_cnt_coarse_dly_7: string := "0 ps";
c_cnt_fine_dly_7: string := "0 ps";
c_cnt_in_src_7 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_7: integer := 0;
c_cnt_prst_7 : integer := 1;
cnt_fpll_src_7 : string := "fpll_0";
dprio0_cnt_bypass_en_7: string := "false";
dprio0_cnt_hi_div_7: integer := 1;
dprio0_cnt_lo_div_7: integer := 1;
dprio0_cnt_odd_div_even_duty_en_7: string := "false";
dprio1_cnt_bypass_en_7: vl_notype;
dprio1_cnt_hi_div_7: vl_notype;
dprio1_cnt_lo_div_7: vl_notype;
dprio1_cnt_odd_div_even_duty_en_7: vl_notype;
output_clock_frequency_8: string := "0 ps";
enable_output_counter_8: string := "true";
phase_shift_8 : string := "0 ps";
duty_cycle_8 : integer := 50;
c_cnt_coarse_dly_8: string := "0 ps";
c_cnt_fine_dly_8: string := "0 ps";
c_cnt_in_src_8 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_8: integer := 0;
c_cnt_prst_8 : integer := 1;
cnt_fpll_src_8 : string := "fpll_0";
dprio0_cnt_bypass_en_8: string := "false";
dprio0_cnt_hi_div_8: integer := 1;
dprio0_cnt_lo_div_8: integer := 1;
dprio0_cnt_odd_div_even_duty_en_8: string := "false";
dprio1_cnt_bypass_en_8: vl_notype;
dprio1_cnt_hi_div_8: vl_notype;
dprio1_cnt_lo_div_8: vl_notype;
dprio1_cnt_odd_div_even_duty_en_8: vl_notype;
output_clock_frequency_9: string := "0 ps";
enable_output_counter_9: string := "true";
phase_shift_9 : string := "0 ps";
duty_cycle_9 : integer := 50;
c_cnt_coarse_dly_9: string := "0 ps";
c_cnt_fine_dly_9: string := "0 ps";
c_cnt_in_src_9 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_9: integer := 0;
c_cnt_prst_9 : integer := 1;
cnt_fpll_src_9 : string := "fpll_0";
dprio0_cnt_bypass_en_9: string := "false";
dprio0_cnt_hi_div_9: integer := 1;
dprio0_cnt_lo_div_9: integer := 1;
dprio0_cnt_odd_div_even_duty_en_9: string := "false";
dprio1_cnt_bypass_en_9: vl_notype;
dprio1_cnt_hi_div_9: vl_notype;
dprio1_cnt_lo_div_9: vl_notype;
dprio1_cnt_odd_div_even_duty_en_9: vl_notype;
output_clock_frequency_10: string := "0 ps";
enable_output_counter_10: string := "true";
phase_shift_10 : string := "0 ps";
duty_cycle_10 : integer := 50;
c_cnt_coarse_dly_10: string := "0 ps";
c_cnt_fine_dly_10: string := "0 ps";
c_cnt_in_src_10 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_10: integer := 0;
c_cnt_prst_10 : integer := 1;
cnt_fpll_src_10 : string := "fpll_0";
dprio0_cnt_bypass_en_10: string := "false";
dprio0_cnt_hi_div_10: integer := 1;
dprio0_cnt_lo_div_10: integer := 1;
dprio0_cnt_odd_div_even_duty_en_10: string := "false";
dprio1_cnt_bypass_en_10: vl_notype;
dprio1_cnt_hi_div_10: vl_notype;
dprio1_cnt_lo_div_10: vl_notype;
dprio1_cnt_odd_div_even_duty_en_10: vl_notype;
output_clock_frequency_11: string := "0 ps";
enable_output_counter_11: string := "true";
phase_shift_11 : string := "0 ps";
duty_cycle_11 : integer := 50;
c_cnt_coarse_dly_11: string := "0 ps";
c_cnt_fine_dly_11: string := "0 ps";
c_cnt_in_src_11 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_11: integer := 0;
c_cnt_prst_11 : integer := 1;
cnt_fpll_src_11 : string := "fpll_0";
dprio0_cnt_bypass_en_11: string := "false";
dprio0_cnt_hi_div_11: integer := 1;
dprio0_cnt_lo_div_11: integer := 1;
dprio0_cnt_odd_div_even_duty_en_11: string := "false";
dprio1_cnt_bypass_en_11: vl_notype;
dprio1_cnt_hi_div_11: vl_notype;
dprio1_cnt_lo_div_11: vl_notype;
dprio1_cnt_odd_div_even_duty_en_11: vl_notype;
output_clock_frequency_12: string := "0 ps";
enable_output_counter_12: string := "true";
phase_shift_12 : string := "0 ps";
duty_cycle_12 : integer := 50;
c_cnt_coarse_dly_12: string := "0 ps";
c_cnt_fine_dly_12: string := "0 ps";
c_cnt_in_src_12 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_12: integer := 0;
c_cnt_prst_12 : integer := 1;
cnt_fpll_src_12 : string := "fpll_0";
dprio0_cnt_bypass_en_12: string := "false";
dprio0_cnt_hi_div_12: integer := 1;
dprio0_cnt_lo_div_12: integer := 1;
dprio0_cnt_odd_div_even_duty_en_12: string := "false";
dprio1_cnt_bypass_en_12: vl_notype;
dprio1_cnt_hi_div_12: vl_notype;
dprio1_cnt_lo_div_12: vl_notype;
dprio1_cnt_odd_div_even_duty_en_12: vl_notype;
output_clock_frequency_13: string := "0 ps";
enable_output_counter_13: string := "true";
phase_shift_13 : string := "0 ps";
duty_cycle_13 : integer := 50;
c_cnt_coarse_dly_13: string := "0 ps";
c_cnt_fine_dly_13: string := "0 ps";
c_cnt_in_src_13 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_13: integer := 0;
c_cnt_prst_13 : integer := 1;
cnt_fpll_src_13 : string := "fpll_0";
dprio0_cnt_bypass_en_13: string := "false";
dprio0_cnt_hi_div_13: integer := 1;
dprio0_cnt_lo_div_13: integer := 1;
dprio0_cnt_odd_div_even_duty_en_13: string := "false";
dprio1_cnt_bypass_en_13: vl_notype;
dprio1_cnt_hi_div_13: vl_notype;
dprio1_cnt_lo_div_13: vl_notype;
dprio1_cnt_odd_div_even_duty_en_13: vl_notype;
output_clock_frequency_14: string := "0 ps";
enable_output_counter_14: string := "true";
phase_shift_14 : string := "0 ps";
duty_cycle_14 : integer := 50;
c_cnt_coarse_dly_14: string := "0 ps";
c_cnt_fine_dly_14: string := "0 ps";
c_cnt_in_src_14 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_14: integer := 0;
c_cnt_prst_14 : integer := 1;
cnt_fpll_src_14 : string := "fpll_0";
dprio0_cnt_bypass_en_14: string := "false";
dprio0_cnt_hi_div_14: integer := 1;
dprio0_cnt_lo_div_14: integer := 1;
dprio0_cnt_odd_div_even_duty_en_14: string := "false";
dprio1_cnt_bypass_en_14: vl_notype;
dprio1_cnt_hi_div_14: vl_notype;
dprio1_cnt_lo_div_14: vl_notype;
dprio1_cnt_odd_div_even_duty_en_14: vl_notype;
output_clock_frequency_15: string := "0 ps";
enable_output_counter_15: string := "true";
phase_shift_15 : string := "0 ps";
duty_cycle_15 : integer := 50;
c_cnt_coarse_dly_15: string := "0 ps";
c_cnt_fine_dly_15: string := "0 ps";
c_cnt_in_src_15 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_15: integer := 0;
c_cnt_prst_15 : integer := 1;
cnt_fpll_src_15 : string := "fpll_0";
dprio0_cnt_bypass_en_15: string := "false";
dprio0_cnt_hi_div_15: integer := 1;
dprio0_cnt_lo_div_15: integer := 1;
dprio0_cnt_odd_div_even_duty_en_15: string := "false";
dprio1_cnt_bypass_en_15: vl_notype;
dprio1_cnt_hi_div_15: vl_notype;
dprio1_cnt_lo_div_15: vl_notype;
dprio1_cnt_odd_div_even_duty_en_15: vl_notype;
output_clock_frequency_16: string := "0 ps";
enable_output_counter_16: string := "true";
phase_shift_16 : string := "0 ps";
duty_cycle_16 : integer := 50;
c_cnt_coarse_dly_16: string := "0 ps";
c_cnt_fine_dly_16: string := "0 ps";
c_cnt_in_src_16 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_16: integer := 0;
c_cnt_prst_16 : integer := 1;
cnt_fpll_src_16 : string := "fpll_0";
dprio0_cnt_bypass_en_16: string := "false";
dprio0_cnt_hi_div_16: integer := 1;
dprio0_cnt_lo_div_16: integer := 1;
dprio0_cnt_odd_div_even_duty_en_16: string := "false";
dprio1_cnt_bypass_en_16: vl_notype;
dprio1_cnt_hi_div_16: vl_notype;
dprio1_cnt_lo_div_16: vl_notype;
dprio1_cnt_odd_div_even_duty_en_16: vl_notype;
output_clock_frequency_17: string := "0 ps";
enable_output_counter_17: string := "true";
phase_shift_17 : string := "0 ps";
duty_cycle_17 : integer := 50;
c_cnt_coarse_dly_17: string := "0 ps";
c_cnt_fine_dly_17: string := "0 ps";
c_cnt_in_src_17 : string := "ph_mux_clk";
c_cnt_ph_mux_prst_17: integer := 0;
c_cnt_prst_17 : integer := 1;
cnt_fpll_src_17 : string := "fpll_0";
dprio0_cnt_bypass_en_17: string := "false";
dprio0_cnt_hi_div_17: integer := 1;
dprio0_cnt_lo_div_17: integer := 1;
dprio0_cnt_odd_div_even_duty_en_17: string := "false";
dprio1_cnt_bypass_en_17: vl_notype;
dprio1_cnt_hi_div_17: vl_notype;
dprio1_cnt_lo_div_17: vl_notype;
dprio1_cnt_odd_div_even_duty_en_17: vl_notype;
dpa_output_clock_frequency_0: string := "0 ps";
pll_vcoph_div_0 : integer := 1;
dpa_output_clock_frequency_1: string := "0 ps";
pll_vcoph_div_1 : integer := 1;
enable_extclk_output_0: string := "false";
pll_extclk_cnt_src_0: string := "m0_cnt";
pll_extclk_enable_0: string := "true";
pll_extclk_invert_0: string := "false";
enable_extclk_output_1: string := "false";
pll_extclk_cnt_src_1: string := "vss";
pll_extclk_enable_1: string := "true";
pll_extclk_invert_1: string := "false";
enable_extclk_output_2: string := "false";
pll_extclk_cnt_src_2: string := "vss";
pll_extclk_enable_2: string := "true";
pll_extclk_invert_2: string := "false";
enable_extclk_output_3: string := "false";
pll_extclk_cnt_src_3: string := "vss";
pll_extclk_enable_3: string := "true";
pll_extclk_invert_3: string := "false";
enable_dll_output_0: string := "false";
pll_dll_src_value_0: string := "vss";
enable_dll_output_1: string := "false";
pll_dll_src_value_1: string := "vss";
enable_lvds_output_0: string := "false";
pll_loaden_coarse_dly_0: string := "0 ps";
pll_loaden_enable_disable_0: string := "true";
pll_loaden_fine_dly_0: string := "0 ps";
pll_lvdsclk_coarse_dly_0: string := "0 ps";
pll_lvdsclk_enable_disable_0: string := "true";
pll_lvdsclk_fine_dly_0: string := "0 ps";
enable_lvds_output_1: string := "false";
pll_loaden_coarse_dly_1: string := "0 ps";
pll_loaden_enable_disable_1: string := "true";
pll_loaden_fine_dly_1: string := "0 ps";
pll_lvdsclk_coarse_dly_1: string := "0 ps";
pll_lvdsclk_enable_disable_1: string := "true";
pll_lvdsclk_fine_dly_1: string := "0 ps";
enable_lvds_output_2: string := "false";
pll_loaden_coarse_dly_2: string := "0 ps";
pll_loaden_enable_disable_2: string := "true";
pll_loaden_fine_dly_2: string := "0 ps";
pll_lvdsclk_coarse_dly_2: string := "0 ps";
pll_lvdsclk_enable_disable_2: string := "true";
pll_lvdsclk_fine_dly_2: string := "0 ps";
enable_lvds_output_3: string := "false";
pll_loaden_coarse_dly_3: string := "0 ps";
pll_loaden_enable_disable_3: string := "true";
pll_loaden_fine_dly_3: string := "0 ps";
pll_lvdsclk_coarse_dly_3: string := "0 ps";
pll_lvdsclk_enable_disable_3: string := "true";
pll_lvdsclk_fine_dly_3: string := "0 ps"
);
port(
phout_0 : out vl_logic_vector(7 downto 0);
phout_1 : out vl_logic_vector(7 downto 0);
adjpllin : in vl_logic_vector;
cclk : in vl_logic_vector;
coreclkin : in vl_logic_vector;
extswitch : in vl_logic_vector;
iqtxrxclkin : in vl_logic_vector;
plliqclkin : in vl_logic_vector;
rxiqclkin : in vl_logic_vector;
clkin : in vl_logic_vector(3 downto 0);
refiqclk_0 : in vl_logic_vector(1 downto 0);
refiqclk_1 : in vl_logic_vector(1 downto 0);
clk0bad : out vl_logic_vector;
clk1bad : out vl_logic_vector;
pllclksel : out vl_logic_vector;
atpgmode : in vl_logic_vector;
clk : in vl_logic_vector;
fpllcsrtest : in vl_logic_vector;
iocsrclkin : in vl_logic_vector;
iocsrdatain : in vl_logic_vector;
iocsren : in vl_logic_vector;
iocsrrstn : in vl_logic_vector;
mdiodis : in vl_logic_vector;
phaseen : in vl_logic_vector;
read : in vl_logic_vector;
rstn : in vl_logic_vector;
scanen : in vl_logic_vector;
sershiftload : in vl_logic_vector;
shiftdonei : in vl_logic_vector;
updn : in vl_logic_vector;
write : in vl_logic_vector;
addr_0 : in vl_logic_vector(5 downto 0);
addr_1 : in vl_logic_vector(5 downto 0);
byteen_0 : in vl_logic_vector(1 downto 0);
byteen_1 : in vl_logic_vector(1 downto 0);
cntsel_0 : in vl_logic_vector(4 downto 0);
cntsel_1 : in vl_logic_vector(4 downto 0);
din_0 : in vl_logic_vector(15 downto 0);
din_1 : in vl_logic_vector(15 downto 0);
blockselect : out vl_logic_vector;
iocsrdataout : out vl_logic_vector;
iocsrenbuf : out vl_logic_vector;
iocsrrstnbuf : out vl_logic_vector;
phasedone : out vl_logic_vector;
dout_0 : out vl_logic_vector(15 downto 0);
dout_1 : out vl_logic_vector(15 downto 0);
dprioout_0 : out vl_logic_vector(815 downto 0);
dprioout_1 : out vl_logic_vector(815 downto 0);
fbclkfpll : in vl_logic_vector;
lvdfbin : in vl_logic_vector;
nresync : in vl_logic_vector;
pfden : in vl_logic_vector;
shiften_fpll : in vl_logic_vector;
zdb : in vl_logic_vector;
fblvdsout : out vl_logic_vector;
lock : out vl_logic_vector;
mcntout : out vl_logic_vector;
plniotribuf : out vl_logic_vector;
clken : in vl_logic_vector;
extclk : out vl_logic_vector;
dll_clkin : in vl_logic_vector;
clkout : out vl_logic_vector;
loaden : out vl_logic_vector;
lvdsclk : out vl_logic_vector;
divclk : out vl_logic_vector;
cascade_out : out vl_logic_vector
);
attribute mti_svvh_generic_type : integer;
attribute mti_svvh_generic_type of number_of_counters : constant is 1;
attribute mti_svvh_generic_type of number_of_fplls : constant is 1;
attribute mti_svvh_generic_type of number_of_extclks : constant is 1;
attribute mti_svvh_generic_type of number_of_dlls : constant is 1;
attribute mti_svvh_generic_type of number_of_lvds : constant is 1;
attribute mti_svvh_generic_type of pll_auto_clk_sw_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_clk_loss_edge_0 : constant is 1;
attribute mti_svvh_generic_type of pll_clk_loss_sw_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_clk_sw_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_clkin_0_src_0 : constant is 1;
attribute mti_svvh_generic_type of pll_clkin_1_src_0 : constant is 1;
attribute mti_svvh_generic_type of pll_manu_clk_sw_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_sw_refclk_src_0 : constant is 1;
attribute mti_svvh_generic_type of pll_auto_clk_sw_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_clk_loss_edge_1 : constant is 1;
attribute mti_svvh_generic_type of pll_clk_loss_sw_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_clk_sw_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_clkin_0_src_1 : constant is 1;
attribute mti_svvh_generic_type of pll_clkin_1_src_1 : constant is 1;
attribute mti_svvh_generic_type of pll_manu_clk_sw_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_sw_refclk_src_1 : constant is 1;
attribute mti_svvh_generic_type of pll_output_clock_frequency_0 : constant is 1;
attribute mti_svvh_generic_type of reference_clock_frequency_0 : constant is 1;
attribute mti_svvh_generic_type of mimic_fbclk_type_0 : constant is 1;
attribute mti_svvh_generic_type of dsm_accumulator_reset_value_0 : constant is 1;
attribute mti_svvh_generic_type of forcelock_0 : constant is 1;
attribute mti_svvh_generic_type of nreset_invert_0 : constant is 1;
attribute mti_svvh_generic_type of pll_atb_0 : constant is 1;
attribute mti_svvh_generic_type of pll_bwctrl_0 : constant is 1;
attribute mti_svvh_generic_type of pll_cmp_buf_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_cp_comp_0 : constant is 1;
attribute mti_svvh_generic_type of pll_cp_current_0 : constant is 1;
attribute mti_svvh_generic_type of pll_ctrl_override_setting_0 : constant is 1;
attribute mti_svvh_generic_type of pll_dsm_dither_0 : constant is 1;
attribute mti_svvh_generic_type of pll_dsm_out_sel_0 : constant is 1;
attribute mti_svvh_generic_type of pll_dsm_reset_0 : constant is 1;
attribute mti_svvh_generic_type of pll_ecn_bypass_0 : constant is 1;
attribute mti_svvh_generic_type of pll_ecn_test_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_enable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_fbclk_mux_1_0 : constant is 1;
attribute mti_svvh_generic_type of pll_fbclk_mux_2_0 : constant is 1;
attribute mti_svvh_generic_type of pll_fractional_carry_out_0 : constant is 1;
attribute mti_svvh_generic_type of pll_fractional_division_0 : constant is 1;
attribute mti_svvh_generic_type of pll_fractional_value_ready_0 : constant is 1;
attribute mti_svvh_generic_type of pll_lf_testen_0 : constant is 1;
attribute mti_svvh_generic_type of pll_lock_fltr_cfg_0 : constant is 1;
attribute mti_svvh_generic_type of pll_lock_fltr_test_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_bypass_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_coarse_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_fine_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_hi_div_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_in_src_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_lo_div_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_odd_div_duty_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_ph_mux_prst_0 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_prst_0 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_bypass_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_coarse_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_fine_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_hi_div_0 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_lo_div_0 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_odd_div_duty_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_ref_buf_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_reg_boost_0 : constant is 1;
attribute mti_svvh_generic_type of pll_regulator_bypass_0 : constant is 1;
attribute mti_svvh_generic_type of pll_ripplecap_ctrl_0 : constant is 1;
attribute mti_svvh_generic_type of pll_slf_rst_0 : constant is 1;
attribute mti_svvh_generic_type of pll_tclk_mux_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_tclk_sel_0 : constant is 1;
attribute mti_svvh_generic_type of pll_test_enable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_testdn_enable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_testup_enable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_unlock_fltr_cfg_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_div_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph0_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph1_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph2_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph3_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph4_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph5_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph6_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph7_en_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vctrl_test_voltage_0 : constant is 1;
attribute mti_svvh_generic_type of vccd0g_atb_0 : constant is 1;
attribute mti_svvh_generic_type of vccd0g_output_0 : constant is 1;
attribute mti_svvh_generic_type of vccd1g_atb_0 : constant is 1;
attribute mti_svvh_generic_type of vccd1g_output_0 : constant is 1;
attribute mti_svvh_generic_type of vccm1g_tap_0 : constant is 1;
attribute mti_svvh_generic_type of vccr_pd_0 : constant is 1;
attribute mti_svvh_generic_type of vcodiv_override_0 : constant is 1;
attribute mti_svvh_generic_type of sim_use_fast_model_0 : constant is 1;
attribute mti_svvh_generic_type of pll_output_clock_frequency_1 : constant is 1;
attribute mti_svvh_generic_type of reference_clock_frequency_1 : constant is 1;
attribute mti_svvh_generic_type of mimic_fbclk_type_1 : constant is 1;
attribute mti_svvh_generic_type of dsm_accumulator_reset_value_1 : constant is 1;
attribute mti_svvh_generic_type of forcelock_1 : constant is 1;
attribute mti_svvh_generic_type of nreset_invert_1 : constant is 1;
attribute mti_svvh_generic_type of pll_atb_1 : constant is 1;
attribute mti_svvh_generic_type of pll_bwctrl_1 : constant is 1;
attribute mti_svvh_generic_type of pll_cmp_buf_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_cp_comp_1 : constant is 1;
attribute mti_svvh_generic_type of pll_cp_current_1 : constant is 1;
attribute mti_svvh_generic_type of pll_ctrl_override_setting_1 : constant is 1;
attribute mti_svvh_generic_type of pll_dsm_dither_1 : constant is 1;
attribute mti_svvh_generic_type of pll_dsm_out_sel_1 : constant is 1;
attribute mti_svvh_generic_type of pll_dsm_reset_1 : constant is 1;
attribute mti_svvh_generic_type of pll_ecn_bypass_1 : constant is 1;
attribute mti_svvh_generic_type of pll_ecn_test_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_enable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_fbclk_mux_1_1 : constant is 1;
attribute mti_svvh_generic_type of pll_fbclk_mux_2_1 : constant is 1;
attribute mti_svvh_generic_type of pll_fractional_carry_out_1 : constant is 1;
attribute mti_svvh_generic_type of pll_fractional_division_1 : constant is 1;
attribute mti_svvh_generic_type of pll_fractional_value_ready_1 : constant is 1;
attribute mti_svvh_generic_type of pll_lf_testen_1 : constant is 1;
attribute mti_svvh_generic_type of pll_lock_fltr_cfg_1 : constant is 1;
attribute mti_svvh_generic_type of pll_lock_fltr_test_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_bypass_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_coarse_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_fine_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_hi_div_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_in_src_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_lo_div_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_odd_div_duty_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_ph_mux_prst_1 : constant is 1;
attribute mti_svvh_generic_type of pll_m_cnt_prst_1 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_bypass_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_coarse_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_fine_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_hi_div_1 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_lo_div_1 : constant is 1;
attribute mti_svvh_generic_type of pll_n_cnt_odd_div_duty_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_ref_buf_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_reg_boost_1 : constant is 1;
attribute mti_svvh_generic_type of pll_regulator_bypass_1 : constant is 1;
attribute mti_svvh_generic_type of pll_ripplecap_ctrl_1 : constant is 1;
attribute mti_svvh_generic_type of pll_slf_rst_1 : constant is 1;
attribute mti_svvh_generic_type of pll_tclk_mux_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_tclk_sel_1 : constant is 1;
attribute mti_svvh_generic_type of pll_test_enable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_testdn_enable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_testup_enable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_unlock_fltr_cfg_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_div_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph0_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph1_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph2_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph3_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph4_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph5_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph6_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vco_ph7_en_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vctrl_test_voltage_1 : constant is 1;
attribute mti_svvh_generic_type of vccd0g_atb_1 : constant is 1;
attribute mti_svvh_generic_type of vccd0g_output_1 : constant is 1;
attribute mti_svvh_generic_type of vccd1g_atb_1 : constant is 1;
attribute mti_svvh_generic_type of vccd1g_output_1 : constant is 1;
attribute mti_svvh_generic_type of vccm1g_tap_1 : constant is 1;
attribute mti_svvh_generic_type of vccr_pd_1 : constant is 1;
attribute mti_svvh_generic_type of vcodiv_override_1 : constant is 1;
attribute mti_svvh_generic_type of sim_use_fast_model_1 : constant is 1;
attribute mti_svvh_generic_type of output_clock_frequency_0 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_0 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_0 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_0 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_0 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_0 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_0 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_0 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_0 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_0 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_0 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_0 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_0 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_0 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_0 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_0 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_0 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_0 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_1 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_1 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_1 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_1 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_1 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_1 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_1 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_1 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_1 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_1 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_1 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_1 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_1 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_1 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_1 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_1 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_1 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_1 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_2 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_2 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_2 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_2 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_2 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_2 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_2 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_2 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_2 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_2 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_2 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_2 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_2 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_2 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_2 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_2 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_2 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_2 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_3 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_3 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_3 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_3 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_3 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_3 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_3 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_3 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_3 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_3 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_3 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_3 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_3 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_3 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_3 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_3 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_3 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_3 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_4 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_4 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_4 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_4 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_4 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_4 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_4 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_4 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_4 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_4 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_4 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_4 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_4 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_4 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_4 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_4 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_4 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_4 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_5 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_5 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_5 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_5 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_5 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_5 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_5 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_5 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_5 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_5 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_5 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_5 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_5 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_5 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_5 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_5 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_5 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_5 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_6 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_6 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_6 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_6 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_6 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_6 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_6 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_6 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_6 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_6 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_6 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_6 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_6 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_6 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_6 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_6 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_6 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_6 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_7 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_7 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_7 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_7 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_7 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_7 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_7 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_7 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_7 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_7 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_7 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_7 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_7 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_7 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_7 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_7 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_7 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_7 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_8 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_8 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_8 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_8 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_8 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_8 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_8 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_8 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_8 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_8 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_8 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_8 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_8 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_8 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_8 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_8 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_8 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_8 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_9 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_9 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_9 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_9 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_9 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_9 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_9 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_9 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_9 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_9 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_9 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_9 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_9 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_9 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_9 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_9 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_9 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_9 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_10 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_10 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_10 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_10 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_10 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_10 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_10 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_10 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_10 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_10 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_10 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_10 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_10 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_10 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_10 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_10 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_10 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_10 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_11 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_11 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_11 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_11 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_11 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_11 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_11 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_11 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_11 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_11 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_11 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_11 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_11 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_11 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_11 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_11 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_11 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_11 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_12 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_12 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_12 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_12 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_12 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_12 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_12 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_12 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_12 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_12 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_12 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_12 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_12 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_12 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_12 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_12 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_12 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_12 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_13 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_13 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_13 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_13 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_13 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_13 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_13 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_13 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_13 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_13 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_13 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_13 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_13 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_13 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_13 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_13 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_13 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_13 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_14 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_14 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_14 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_14 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_14 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_14 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_14 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_14 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_14 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_14 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_14 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_14 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_14 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_14 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_14 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_14 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_14 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_14 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_15 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_15 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_15 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_15 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_15 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_15 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_15 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_15 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_15 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_15 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_15 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_15 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_15 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_15 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_15 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_15 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_15 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_15 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_16 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_16 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_16 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_16 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_16 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_16 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_16 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_16 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_16 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_16 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_16 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_16 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_16 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_16 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_16 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_16 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_16 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_16 : constant is 3;
attribute mti_svvh_generic_type of output_clock_frequency_17 : constant is 1;
attribute mti_svvh_generic_type of enable_output_counter_17 : constant is 1;
attribute mti_svvh_generic_type of phase_shift_17 : constant is 1;
attribute mti_svvh_generic_type of duty_cycle_17 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_coarse_dly_17 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_fine_dly_17 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_in_src_17 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_ph_mux_prst_17 : constant is 1;
attribute mti_svvh_generic_type of c_cnt_prst_17 : constant is 1;
attribute mti_svvh_generic_type of cnt_fpll_src_17 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_bypass_en_17 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_hi_div_17 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_lo_div_17 : constant is 1;
attribute mti_svvh_generic_type of dprio0_cnt_odd_div_even_duty_en_17 : constant is 1;
attribute mti_svvh_generic_type of dprio1_cnt_bypass_en_17 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_hi_div_17 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_lo_div_17 : constant is 3;
attribute mti_svvh_generic_type of dprio1_cnt_odd_div_even_duty_en_17 : constant is 3;
attribute mti_svvh_generic_type of dpa_output_clock_frequency_0 : constant is 1;
attribute mti_svvh_generic_type of pll_vcoph_div_0 : constant is 1;
attribute mti_svvh_generic_type of dpa_output_clock_frequency_1 : constant is 1;
attribute mti_svvh_generic_type of pll_vcoph_div_1 : constant is 1;
attribute mti_svvh_generic_type of enable_extclk_output_0 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_cnt_src_0 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_enable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_invert_0 : constant is 1;
attribute mti_svvh_generic_type of enable_extclk_output_1 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_cnt_src_1 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_enable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_invert_1 : constant is 1;
attribute mti_svvh_generic_type of enable_extclk_output_2 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_cnt_src_2 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_enable_2 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_invert_2 : constant is 1;
attribute mti_svvh_generic_type of enable_extclk_output_3 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_cnt_src_3 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_enable_3 : constant is 1;
attribute mti_svvh_generic_type of pll_extclk_invert_3 : constant is 1;
attribute mti_svvh_generic_type of enable_dll_output_0 : constant is 1;
attribute mti_svvh_generic_type of pll_dll_src_value_0 : constant is 1;
attribute mti_svvh_generic_type of enable_dll_output_1 : constant is 1;
attribute mti_svvh_generic_type of pll_dll_src_value_1 : constant is 1;
attribute mti_svvh_generic_type of enable_lvds_output_0 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_coarse_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_enable_disable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_fine_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_coarse_dly_0 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_enable_disable_0 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_fine_dly_0 : constant is 1;
attribute mti_svvh_generic_type of enable_lvds_output_1 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_coarse_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_enable_disable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_fine_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_coarse_dly_1 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_enable_disable_1 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_fine_dly_1 : constant is 1;
attribute mti_svvh_generic_type of enable_lvds_output_2 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_coarse_dly_2 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_enable_disable_2 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_fine_dly_2 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_coarse_dly_2 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_enable_disable_2 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_fine_dly_2 : constant is 1;
attribute mti_svvh_generic_type of enable_lvds_output_3 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_coarse_dly_3 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_enable_disable_3 : constant is 1;
attribute mti_svvh_generic_type of pll_loaden_fine_dly_3 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_coarse_dly_3 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_enable_disable_3 : constant is 1;
attribute mti_svvh_generic_type of pll_lvdsclk_fine_dly_3 : constant is 1;
end altera_arriavgz_pll;
| mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_delay.vhd | 2 | 1850 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity alt_dspbuilder_delay is
generic (
CLOCKPHASE : string := "1";
DELAY : positive := 1;
USE_INIT : natural := 0;
BITPATTERN : string := "00000001";
WIDTH : positive := 8
);
port (
input : in std_logic_vector(width-1 downto 0);
clock : in std_logic;
sclr : in std_logic;
aclr : in std_logic;
output : out std_logic_vector(width-1 downto 0);
ena : in std_logic
);
end entity alt_dspbuilder_delay;
architecture rtl of alt_dspbuilder_delay is
component alt_dspbuilder_delay_GNUECIBFDH is
generic (
CLOCKPHASE : string := "1";
DELAY : positive := 1;
USE_INIT : natural := 1;
BITPATTERN : string := "0";
WIDTH : positive := 1
);
port (
aclr : in std_logic;
clock : in std_logic;
ena : in std_logic;
input : in std_logic_vector(1-1 downto 0);
output : out std_logic_vector(1-1 downto 0);
sclr : in std_logic
);
end component alt_dspbuilder_delay_GNUECIBFDH;
begin
alt_dspbuilder_delay_GNUECIBFDH_0: if ((CLOCKPHASE = "1") and (DELAY = 1) and (USE_INIT = 1) and (BITPATTERN = "0") and (WIDTH = 1)) generate
inst_alt_dspbuilder_delay_GNUECIBFDH_0: alt_dspbuilder_delay_GNUECIBFDH
generic map(CLOCKPHASE => "1", DELAY => 1, USE_INIT => 1, BITPATTERN => "0", WIDTH => 1)
port map(aclr => aclr, clock => clock, ena => ena, input => input, output => output, sclr => sclr);
end generate;
assert not (((CLOCKPHASE = "1") and (DELAY = 1) and (USE_INIT = 1) and (BITPATTERN = "0") and (WIDTH = 1)))
report "Please run generate again" severity error;
end architecture rtl;
| mit |
MostAwesomeDude/linguist | samples/VHDL/foo.vhd | 91 | 217 | -- VHDL example file
library ieee;
use ieee.std_logic_1164.all;
entity inverter is
port(a : in std_logic;
b : out std_logic);
end entity;
architecture rtl of inverter is
begin
b <= not a;
end architecture;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/db/alt_dspbuilder_testbench_salt_GNDBMPYDND.vhd | 20 | 1717 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
library std;
use std.textio.all;
entity alt_dspbuilder_testbench_salt_GNDBMPYDND is
generic ( XFILE : string := "default");
port(
clock : in std_logic;
aclr : in std_logic;
output : out std_logic);
end entity;
architecture rtl of alt_dspbuilder_testbench_salt_GNDBMPYDND is
function to_std_logic (B: character) return std_logic is
begin
case B is
when '0' => return '0';
when '1' => return '1';
when OTHERS => return 'X';
end case;
end;
function to_std_logic_vector (B: string) return
std_logic_vector is
variable res: std_logic_vector (B'range);
begin
for i in B'range loop
case B(i) is
when '0' => res(i) := '0';
when '1' => res(i) := '1';
when OTHERS => res(i) := 'X';
end case;
end loop;
return res;
end;
procedure skip_type_header(file f:text) is
use STD.textio.all;
variable in_line : line;
begin
readline(f, in_line);
end procedure skip_type_header ;
file InputFile : text open read_mode is XFILE;
Begin
-- salt generator
skip_type_header(InputFile);
-- Reading Simulink Input
Input_pInput:process(clock, aclr)
variable s : string(1 to 1) ;
variable ptr : line ;
begin
if (aclr = '1') then
output <= '0';
elsif (not endfile(InputFile)) then
if clock'event and clock='0' then
readline(Inputfile, ptr);
read(ptr, s);
output <= to_std_logic(s(1));
end if ;
end if ;
end process ;
end architecture;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/db/alt_dspbuilder_SBitLogical.vhd | 20 | 3567 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_SBitLogical is
generic (
lpm_width : positive := 8 ;
lop : LogicalOperator := AltAND
);
port (
dataa : in std_logic_vector(lpm_width-1 downto 0);
result : out std_logic
);
end alt_dspbuilder_SBitLogical;
architecture SBitLogical_SYNTH of alt_dspbuilder_SBitLogical is
signal worand : std_logic_vector(lpm_width-1 downto 0);
signal ndataa : std_logic_vector(lpm_width-1 downto 0);
signal result_int : std_logic;
begin
u0: alt_dspbuilder_sAltrBitPropagate generic map(QTB=>DSPBuilderQTB, QTB_PRODUCT => DSPBuilderProduct, QTB_VERSION => DSPBuilderVersion)
port map (d => result_int, r => result);
------------------AND--------------------------------
go1p:if lop = AltAND generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
end generate gi;
result_int <= '1' when (worand=dataa) else '0';
end generate;
------------------OR--------------------------------
go2p:if lop = AltOR generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
ndataa(i) <= not (dataa(i));
end generate gi;
result_int <= '0' when (ndataa=worand) else '1';
end generate;
------------------XOR--------------------------------
go3p:if lop = AltXOR generate
gif:if (lpm_width>2) generate
process(dataa)
variable interes : std_logic ;
begin
interes := dataa(0) xor dataa(1);
for i in 2 to lpm_width-1 loop
interes := dataa(i) xor interes;
end loop;
result_int <= interes;
end process;
end generate;
gif2:if (lpm_width<3) generate
result_int <= dataa(0) xor dataa(1);
end generate;
end generate;
------------------NOR--------------------------------
go4p:if lop = AltNOR generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
ndataa(i) <= not (dataa(i));
end generate gi;
result_int <= '1' when (ndataa=worand) else '0';
end generate;
------------------NAND--------------------------------
go5p:if lop = AltNAND generate
gi:for i in 0 to lpm_width-1 generate
worand(i) <= '1';
end generate gi;
result_int <= '0' when (worand=dataa) else '1';
end generate;
------------------NOT (Single Bit only)---------------
go6p:if lop = AltNOT generate
result_int <= not (dataa(0));
end generate;
end SBitLogical_SYNTH;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/hdl/Gray_Processing.vhd | 2 | 2259 | -- This file is not intended for synthesis, is is present so that simulators
-- see a complete view of the system.
-- You may use the entity declaration from this file as the basis for a
-- component declaration in a VHDL file instantiating this entity.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.NUMERIC_STD.all;
entity Gray_Processing is
port (
Avalon_ST_Sink_data : in std_logic_vector(24-1 downto 0);
Avalon_ST_Sink_endofpacket : in std_logic;
Avalon_ST_Sink_ready : out std_logic;
Avalon_ST_Sink_startofpacket : in std_logic;
Avalon_ST_Sink_valid : in std_logic;
Avalon_ST_Source_data : out std_logic_vector(24-1 downto 0);
Avalon_ST_Source_endofpacket : out std_logic;
Avalon_ST_Source_ready : in std_logic;
Avalon_ST_Source_startofpacket : out std_logic;
Avalon_ST_Source_valid : out std_logic;
Clock : in std_logic;
aclr : in std_logic
);
end entity Gray_Processing;
architecture rtl of Gray_Processing is
component Gray_Processing_GN is
port (
Avalon_ST_Sink_data : in std_logic_vector(24-1 downto 0);
Avalon_ST_Sink_endofpacket : in std_logic;
Avalon_ST_Sink_ready : out std_logic;
Avalon_ST_Sink_startofpacket : in std_logic;
Avalon_ST_Sink_valid : in std_logic;
Avalon_ST_Source_data : out std_logic_vector(24-1 downto 0);
Avalon_ST_Source_endofpacket : out std_logic;
Avalon_ST_Source_ready : in std_logic;
Avalon_ST_Source_startofpacket : out std_logic;
Avalon_ST_Source_valid : out std_logic;
Clock : in std_logic;
aclr : in std_logic
);
end component Gray_Processing_GN;
begin
Gray_Processing_GN_0: if true generate
inst_Gray_Processing_GN_0: Gray_Processing_GN
port map(Avalon_ST_Sink_data => Avalon_ST_Sink_data, Avalon_ST_Sink_endofpacket => Avalon_ST_Sink_endofpacket, Avalon_ST_Sink_ready => Avalon_ST_Sink_ready, Avalon_ST_Sink_startofpacket => Avalon_ST_Sink_startofpacket, Avalon_ST_Sink_valid => Avalon_ST_Sink_valid, Avalon_ST_Source_data => Avalon_ST_Source_data, Avalon_ST_Source_endofpacket => Avalon_ST_Source_endofpacket, Avalon_ST_Source_ready => Avalon_ST_Source_ready, Avalon_ST_Source_startofpacket => Avalon_ST_Source_startofpacket, Avalon_ST_Source_valid => Avalon_ST_Source_valid, Clock => Clock, aclr => aclr);
end generate;
end architecture rtl;
| mit |
Given-Jiang/Gray_Processing | Gray_Processing_dspbuilder/hdl/alt_dspbuilder_bus_concat_GN55ETJ4VI.vhd | 12 | 654 | library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
library altera;
use altera.alt_dspbuilder_package.all;
library lpm;
use lpm.lpm_components.all;
entity alt_dspbuilder_bus_concat_GN55ETJ4VI is
generic ( widthB : natural := 16;
widthA : natural := 8);
port(
a : in std_logic_vector((widthA)-1 downto 0);
aclr : in std_logic;
b : in std_logic_vector((widthB)-1 downto 0);
clock : in std_logic;
output : out std_logic_vector((widthA+widthB)-1 downto 0));
end entity;
architecture rtl of alt_dspbuilder_bus_concat_GN55ETJ4VI is
Begin
output <= a & b;
end architecture; | mit |
Given-Jiang/Gray_Processing | tb_Gray_Processing/hdl/alt_dspbuilder_sAltrBitPropagate.vhd | 20 | 1572 | --------------------------------------------------------------------------------------------
-- DSP Builder (Version 9.1)
-- Quartus II development tool and MATLAB/Simulink Interface
--
-- Legal Notice: © 2001 Altera Corporation. All rights reserved. Your use of Altera
-- Corporation's design tools, logic functions and other software and tools, and its
-- AMPP partner logic functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any associated
-- documentation or information are expressly subject to the terms and conditions
-- of the Altera Program License Subscription Agreement, Altera MegaCore Function
-- License Agreement, or other applicable license agreement, including, without
-- limitation, that your use is for the sole purpose of programming logic devices
-- manufactured by Altera and sold by Altera or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--------------------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
library altera;
use altera.alt_dspbuilder_package.all;
entity alt_dspbuilder_sAltrBitPropagate is
generic (
QTB : string :="on";
QTB_PRODUCT : string :="DSP Builder";
QTB_VERSION : string :="6.0"
);
port (
d : in std_logic;
r : out std_logic
);
end alt_dspbuilder_sAltrBitPropagate ;
architecture sAltrBitPropagate_Synth of alt_dspbuilder_sAltrBitPropagate is
begin
r<=d;
end sAltrBitPropagate_Synth;
| mit |
Pajeh/mips1 | src/vhdl/instruction_decode_tb.vhd | 1 | 11565 | -- Testbench for the instruction decode stage
-- 2015-08-04 Lukas Jäger created
-- 2015-08-04 Lukas Jäger added test cases for forwarding
-- 2015-08-05 Lukas Jaeger adjusted dut to new interface
-- 2015-08-05 Lukas Jaeger added expected data for ip_out
-- 2015-08-06 Lukas, Carlos added test cases for Jump-instructions
-- 2015-08-06 Lukas Fixed some minor bugs
library IEEE;
use IEEE.std_logic_1164.all;
entity instruction_decode_tb is
end instruction_decode_tb;
architecture behavioural of instruction_decode_tb is
-- DUT
component instruction_decode
port(instr,ip_in, writeback, alu_result, mem_result: in std_logic_vector (31 downto 0);
writeback_reg, regdest_ex, regdest_mem : in std_logic_vector (4 downto 0);
regdest_mux, regshift_mux: in std_logic_vector (1 downto 0);
clk, reset, enable_regs: in std_logic;
reg_a, reg_b, imm, ip_out : out std_logic_vector (31 downto 0);
reg_dest, shift_out : out std_logic_vector (4 downto 0)
);
end component;
signal instr : std_logic_vector (31 downto 0) := x"00000000";
signal ip_in : std_logic_vector (31 downto 0) := x"00000000";
signal writeback : std_logic_vector (31 downto 0) := x"00000000";
signal alu_result : std_logic_vector (31 downto 0) := x"00000000";
signal mem_result : std_logic_vector (31 downto 0) := x"00000000";
signal writeback_reg : std_logic_vector (4 downto 0) := "00001";
signal regdest_mem : std_logic_vector (4 downto 0) := "00000";
signal regdest_ex : std_logic_vector (4 downto 0) := "00000";
signal regdest_mux : std_logic_vector (1 downto 0) := "00";
signal regshift_mux : std_logic_vector (1 downto 0) := "00";
signal clk : std_logic := '0';
signal reset : std_logic := '0';
signal enable_regs : std_logic := '0';
-- Tweak clock frequency here
constant clk_time : time := 10 ns;
begin
dut: instruction_decode port map(
instr => instr,
ip_in => ip_in,
writeback => writeback,
writeback_reg => writeback_reg,
alu_result => alu_result,
mem_result => mem_result,
regdest_mux => regdest_mux,
regshift_mux => regshift_mux,
clk => clk,
reset => reset,
enable_regs => enable_regs,
regdest_ex => regdest_ex,
regdest_mem => regdest_mem
);
clk_proc : process
begin
clk <= '0';
wait for clk_time / 2;
clk <= '1';
wait for clk_time / 2;
end process;
data_proc : process
begin
reset <= '0';
wait for clk_time/2;
reset <= '1';
enable_regs <= '1';
-- Writing some test values to the register file:
-- r1 becomes 01234567
writeback_reg <= "00001";
writeback <= x"01234567";
wait for clk_time;
-- r2 becomes 76543210
writeback_reg <= "00010";
writeback <= x"76543210";
mem_result <= x"76543210";
wait for clk_time;
-- r3 becomes -1 (signed)
writeback_reg <= "00011";
writeback <= X"FFFFFFFF";
wait for clk_time;
enable_regs <= '0';
writeback_reg <= "00000";
wait for clk_time;
-- Real testing starts here
--inserting an add-instruction that adds r1 and r2 to r3
--outputs should be (all vals in hex notation):
-- reg_a: 01234567
-- reg_b: 76543210
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00000000
instr <= x"00221820";
wait for clk_time;
-- inserting an add instruction that adds r1 and r2 to r3 while r2 is still in memory stage
--outputs should be (all vals in hex notation):
-- reg_a: 01234567
-- reg_b: fedcba98
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00000000
alu_result <= x"fedcba98";
regdest_ex <= "00010";
instr <= x"00221820";
wait for clk_time;
regdest_ex <= "00000";
-- inserting an add instruction that adds r1 and r2 to r3 while r2 is still in writeback stage
--outputs should be (all vals in hex notation):
-- reg_a: 01234567
-- reg_b: 01101001
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00000000
mem_result <= x"01101001";
regdest_mem <= "00010";
instr <= x"00221820";
wait for clk_time;
regdest_mem <= "00000";
-- inserting an add instruction that adds r1 and r2 to r3 while r2 is still in both stages
--outputs should be (all vals in hex notation):
-- reg_a: 01234567
-- reg_b: 01101001
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00000000
regdest_ex <= "00010";
regdest_mem <= "00010";
instr <= x"00221820";
wait for clk_time;
regdest_mem <= "00000";
regdest_ex <= "00000";
-- inserting an add instruction that adds r1 and r2 to r3 while r1 is still in memory stage
--outputs should be (all vals in hex notation):
-- reg_a: fedcba98
-- reg_b: 76543210
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00006080
regdest_ex <= "00001";
instr <= x"00221820";
wait for clk_time;
regdest_ex <= "00000";
-- inserting an add instruction that adds r1 and r2 to r3 while r1 is still in writeback stage
--outputs should be (all vals in hex notation):
-- reg_a: 01101001
-- reg_b: 76543210
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00006080
regdest_mem <= "00001";
instr <= x"00221820";
wait for clk_time;
regdest_mem <= "00000";
-- inserting an add instruction that adds r1 and r2 to r3 while r2 is still in both stages
--outputs should be (all vals in hex notation):
-- reg_a: 01101001
-- reg_b: 76543210
-- reg_dest: 3;
-- imm: 1820
-- shift: 0
-- ip_out: 00006080
regdest_ex <= "00001";
regdest_mem <= "00001";
instr <= x"00221820";
wait for clk_time;
regdest_mem <= "00000";
regdest_ex <= "00000";
-- inserting an addi instruction that adds abcd in hex notation to r1 and stores it in r2
-- outputs should be (all vals in hex notation):
-- reg_a: 01234567
-- reg_b: 76543210;
-- reg_dest: 2;
-- imm: 0000abcd
-- shift: 0
-- ip_out: fffeaf34
instr <= x"2422abcd";
regdest_mux <= "01";
wait for clk_time;
regdest_mux <= "00";
-- Jump Register - Jump to the address contained in register $s
-- encoding 0000 00ss sss0 0000 0000 0000 0000 1000
-- Test: jump using register 1 value. Encoding 0020_0008
-- reg_a: 01234567
-- reg_b: 00000000;
-- reg_dest: 2;
-- imm: 0000abcd
-- shift: 0
-- ip_out: 01234567
instr <= x"00200008";
wait for clk_time;
-- Jump
-- ip_out : 02af37bc
ip_in <= x"01010101";
instr <= x"08abcdef";
wait for clk_time;
-- JAL
-- ip_out : 02af37bc
instr <= x"0cabcdef";
wait for clk_time;
-- JAL with negative immediate
-- ip_out: 0ffffffc
instr <= x"0fffffff";
wait for clk_time;
-- Forwarding test for regdest_ex and alu_result using a jump
-- jump to register value instruction that r1 is still in memory stage
--outputs should be (all vals in hex notation):
-- reg_a:
-- reg_b:
-- reg_dest: ;
-- imm: 1820
-- shift: 0
-- ip_out: fedcba98
alu_result <= x"fedcba98";
regdest_ex <= "00001";
instr <= x"00200008";
wait for clk_time;
regdest_ex <= "00000";
wait for clk_time;
-- Forwarding test for regdest_ex and alu_result using a jump
-- jump to register value instruction that r2 is still in memory stage
--outputs should be (all vals in hex notation):
-- reg_a:
-- reg_b:
-- reg_dest: ;
-- imm: 1820
-- shift: 0
-- ip_out: 1edf2a98
alu_result <= x"1edf2a98";
regdest_ex <= "00010";
instr <= x"00400008";
wait for clk_time;
regdest_ex <= "00000";
wait for clk_time;
-- Forwarding test for regdest_mem and writeback using a jump
-- jump to register value instruction that r1 is still in writeback stage
--outputs should be (all vals in hex notation):
-- reg_a:
-- reg_b:
-- reg_dest: ;
-- imm: 1820
-- shift: 0
-- ip_out: fedcba98
mem_result <= x"fedcba98";
regdest_mem <= "00001";
instr <= x"00200008";
wait for clk_time;
regdest_mem <= "00000";
wait for clk_time;
-- Forwarding test for regdest_mem and writeback using a jump
-- jump to register value instruction that r2 is still in writeback stage
--outputs should be (all vals in hex notation):
-- reg_a:
-- reg_b:
-- reg_dest: ;
-- imm: 1820
-- shift: 0
-- ip_out: 1edf2a98
mem_result <= x"1edf2a98";
regdest_mem <= "00010";
instr <= x"00400008";
wait for clk_time;
regdest_mem <= "00000";
wait for clk_time;
-- Test for unsigned immediate expansion
-- reg_a: 01234567
-- reg_b: 76543210
-- imm: 0000ffff;
instr <= x"2422ffff";
wait for clk_time;
-- Test for signed immediate expansion
-- reg_a: 01234567
-- reg_b: 76543210
-- imm: ffffffff;
instr <= x"2022ffff";
wait for clk_time;
-- Test for a LW-Operation
-- imm: FFFF8010
instr <= x"8f828010";
wait for clk_time;
ip_in <=x"01010100";
-- Test for BEQ-Op (condition is true)
-- ip_out : 0103C0F8
instr <= x"1000AFFE";
wait for clk_time;
-- Test for BEQ-Op (condition is false)
-- ip_out : 01010100
instr <= x"1020AFFE";
wait for clk_time;
-- Test for BGEZAL-Op (var is greater)
-- ip_out : 0103C0F8
instr <= x"0421AFFE";
wait for clk_time;
-- Test for BGEZAL-Op (var is equal)
-- ip_out : 0103C0F8
instr <= x"0401AFFE";
wait for clk_time;
-- Test for BGEZAL-Op (var is smaller)
-- ip_out : 01010100
instr <= x"0461AFFE";
wait for clk_time;
-- Test for BGEZAL-Op (var is greater)
-- ip_out : 0103C0F8
-- R31: 01010100
instr <= x"0431AFFE";
wait for clk_time;
-- Test for BGEZAL-Op (var is equal)
-- ip_out : 0103C0F8
instr <= x"0411AFFE";
wait for clk_time;
-- Test for BGEZAL-Op (var is smaller)
-- ip_out : 01010100
instr <= x"0471AFFE";
wait for clk_time;
-- Test for BGTZ (true)
-- ip_out: 0103C0F8
instr <=x"1C20AFFE";
wait for clk_time;
-- Test for BGTZ (false)
-- ip_out: 01010100
instr <= x"1C00AFFE";
wait for clk_time;
-- Test for BNEZ (true)
-- ip_out: 34
ip_in <= x"00000050";
instr <= x"1440fff8";
wait for clk_time;
-- Test for BNEZ (true)
-- ip_out: 58
ip_in <= x"00000050";
instr <= x"1400fff8";
wait for clk_time;
end process;
end;
| mit |
cadesalaberry/digital-system-design | lab5/g23_Seconds_to_Days.vhd | 3 | 1470 | -- describe what this circuit does
--
-- entity name: g23_Seconds_to_Days
--
-- Copyright (C) 2014 cadesalaberry, grahamludwinski
--
-- Version 1.0
--
-- Author:
-- Charles-Antoine de Salaberry; [email protected],
-- Graham Ludwinski; [email protected]
--
-- Date: 21/01/2014
library ieee; -- allows use of the std_logic_vector type
use ieee.std_logic_1164.all;
use IEEE.numeric_std.all;
entity g23_Seconds_to_Days is
port (
seconds : in unsigned(16 downto 0);
day_fraction : out unsigned(39 downto 0)
);
end g23_Seconds_to_Days;
architecture cascading of g23_Seconds_to_Days is
signal adder1: unsigned(18 downto 0);
signal adder2: unsigned(22 downto 0);
signal adder3: unsigned(25 downto 0);
signal adder4: unsigned(26 downto 0);
signal adder5: unsigned(27 downto 0);
signal adder6: unsigned(29 downto 0);
signal adder7: unsigned(33 downto 0);
signal adder8: unsigned(38 downto 0);
signal adder9: unsigned(39 downto 0);
begin
adder1 <= seconds + (seconds & "00");
adder2 <= adder1 + (seconds & "000000");
adder3 <= adder2 + (seconds & "000000000");
adder4 <= adder3 + (seconds & "0000000000");
adder5 <= adder4 + (seconds & "00000000000");
adder6 <= adder5 + (seconds & "0000000000000");
adder7 <= adder6 + (seconds & "00000000000000000");
adder8 <= adder7 + (seconds & "0000000000000000000000");
adder9 <= adder8 + (seconds & "00000000000000000000000");
day_fraction <= adder9;
end cascading;
| mit |
Pajeh/mips1 | src/vhdl/cpu_datapath.vhd | 1 | 8323 | -- revision history:
-- 06.07.2015 Alex Schoenberger created
-- 05.08.2015 Patrick Appenheimer first try
-- 06.08.2015 Patrick Appenheimer ports and entities added
-- 10.08.2015 Patrick Appenheimer minor changes
-- 12.08.2015 Patrick Appenheimer changed rising_edge to falling_edge
-- 14.08.2015 Patrick Appenheimer changed pc_mux control
library IEEE;
use IEEE.std_logic_1164.ALL;
USE IEEE.numeric_std.ALL;
library WORK;
use WORK.all;
-- -- stage_control: --
-- to activate registers, set signal stage_control as follows:
-- stage0->stage1: xxxx1
-- stage1->stage2: xxx1x
-- stage2->stage3: xx1xx
-- stage3->stage4: x1xxx
-- stage4->stage5: 1xxxx
entity cpu_datapath is
port(
clk : in std_logic;
rst : in std_logic;
instr_addr : out std_logic_vector(31 downto 0);
data_addr : out std_logic_vector(31 downto 0);
instr_in : in std_logic_vector(31 downto 0);
data_to_cpu : in std_logic_vector(31 downto 0);
data_from_cpu : out std_logic_vector(31 downto 0);
alu_op : in std_logic_vector(5 downto 0);
exc_mux1 : in std_logic_vector(1 downto 0);
exc_mux2 : in std_logic_vector(1 downto 0);
exc_alu_zero : out std_logic_vector(0 downto 0);
memstg_mux : in std_logic;
id_regdest_mux : in std_logic_vector (1 downto 0);
id_regshift_mux : in std_logic_vector (1 downto 0);
id_enable_regs : in std_logic;
in_mux_pc : in std_logic;
stage_control : in std_logic_vector (4 downto 0)
);
end entity cpu_datapath;
architecture structure_cpu_datapath of cpu_datapath is
-- -------- PC ==> Instr. Fetch -----------------
signal mux_out_0 : std_logic_vector(31 downto 0);
-- -------- Instr. Fetch ==> Instr. Decode -----------------
signal instr_1 : std_logic_vector(31 downto 0);
signal ip_1 : std_logic_vector(31 downto 0);
-- -------- Instr. Decode ==> Execution -----------------
signal shift_2 : std_logic_vector(4 downto 0);
signal reg_a_2 : std_logic_vector(31 downto 0);
signal reg_b_2 : std_logic_vector(31 downto 0);
signal regdest_2 : std_logic_vector(4 downto 0);
signal imm_2 : std_logic_vector(31 downto 0);
signal ip_2 : std_logic_vector(31 downto 0);
-- -------- Execution ==> Memory Stage -----------------
signal alu_result_3 : std_logic_vector(31 downto 0);
signal data_3 : std_logic_vector(31 downto 0);
signal regdest_3 : std_logic_vector(4 downto 0);
-- -------- Memory Stage ==> Write Back -----------------
signal writeback_4 : std_logic_vector(31 downto 0);
signal regdest_4 : std_logic_vector(4 downto 0);
-- IP:
signal mux_pc_out : std_logic_vector(31 downto 0);
-- Instr. Fetch:
signal if_ip : std_logic_vector(31 downto 0);
signal if_instr : std_logic_vector(31 downto 0);
-- Instr. Decode:
signal id_a : std_logic_vector(31 downto 0);
signal id_b : std_logic_vector(31 downto 0);
signal id_imm : std_logic_vector(31 downto 0);
signal id_ip : std_logic_vector(31 downto 0);
signal id_regdest : std_logic_vector(4 downto 0);
signal id_shift : std_logic_vector(4 downto 0);
-- Execution:
signal alu_result : std_logic_vector(31 downto 0);
signal data_out : std_logic_vector(31 downto 0);
signal exc_destreg_out : std_logic_vector(4 downto 0);
-- Memory Stage:
signal memstg_writeback_out : std_logic_vector(31 downto 0);
signal memstg_destreg_out : std_logic_vector(4 downto 0);
-- Write Back:
signal wb_writeback_out : std_logic_vector(31 downto 0);
signal wb_destreg_out : std_logic_vector(4 downto 0);
signal last_instruction : std_logic_vector( 31 downto 0);
begin
-- INSTRUCTION FETCH:
instruction_fetch: entity work.instruction_fetch(behavioral) port map(clk, rst, mux_out_0, instr_in, if_ip,
instr_addr, if_instr);
-- INSTRUCTION DECODE:
instruction_decode: entity work.instruction_decode(behavioral) port map(instr_1, ip_1, wb_writeback_out, alu_result,
memstg_writeback_out, regdest_4, exc_destreg_out,
memstg_destreg_out, id_regdest_mux,
id_regshift_mux, clk, rst, id_enable_regs,
id_a, id_b, id_imm, id_ip, id_regdest, id_shift);
-- EXECUTION:
execution: entity work.execution(behave) port map(clk, rst, alu_result, data_out, exc_destreg_out,
exc_alu_zero, reg_a_2, reg_b_2, regdest_2, imm_2,
ip_2, shift_2, exc_mux1, exc_mux2,alu_op);
-- MEMORY STAGE:
memory_stage: entity work.MemoryStage(behavioral) port map(clk, rst, alu_result_3, data_3, data_addr,
data_from_cpu, data_to_cpu, memstg_mux,
memstg_writeback_out, regdest_3, memstg_destreg_out);
-- WRITE BACK:
write_back: entity work.write_back(behavioral) port map(clk, rst, writeback_4, regdest_4,
wb_writeback_out, wb_destreg_out);
stage0: process(clk, rst)
begin
if (rst = '1') then
mux_out_0 <= (others => '0');
elsif ((rising_edge(clk)) and (stage_control (0 downto 0) = "1")) then
mux_out_0 <= mux_pc_out;
end if;
end process;
stage1: process(clk, rst)
begin
if (rst = '1') then
instr_1 <= (others => '0');
ip_1 <= (others => '0');
elsif ((rising_edge(clk)) and (stage_control (1 downto 1) = "1")) then
instr_1 <= if_instr;
ip_1 <= if_ip;
end if;
end process;
stage2: process(clk, rst)
begin
if (rst = '1') then
shift_2 <= (others => '0');
reg_a_2 <= (others => '0');
reg_b_2 <= (others => '0');
regdest_2 <= (others => '0');
imm_2 <= (others => '0');
ip_2 <= (others => '0');
elsif ((rising_edge(clk)) and (stage_control (2 downto 2) = "1")) then
shift_2 <= id_shift;
reg_a_2 <= id_a;
reg_b_2 <= id_b;
regdest_2 <= id_regdest;
imm_2 <= id_imm;
ip_2 <= ip_1;
end if;
end process;
stage3: process(clk, rst)
begin
if (rst = '1') then
alu_result_3 <= (others => '0');
data_3 <= (others => '0');
regdest_3 <= (others => '0');
elsif ((rising_edge(clk)) and (stage_control (3 downto 3) = "1")) then
alu_result_3 <= alu_result;
data_3 <= data_out;
regdest_3 <= exc_destreg_out;
end if;
end process;
stage4: process(clk, rst)
begin
if (rst = '1') then
writeback_4 <= (others => '0');
regdest_4 <= (others => '0');
elsif ((rising_edge(clk)) and (stage_control (4 downto 4) = "1")) then
writeback_4 <= memstg_writeback_out;
regdest_4 <= memstg_destreg_out;
end if;
end process;
mux: process(in_mux_pc, id_ip, if_ip)
begin
if (in_mux_pc = '1')then
mux_pc_out <= id_ip;
else
mux_pc_out <= if_ip;
end if;
end process;
--mux: process(instr_in, id_ip, if_ip, clk)
-- begin
-- if (clk'event and clk = '1') then
-- if ((instr_in(31 downto 26) = "000100") or (instr_in(31 downto 26) = "000010") or (instr_in(31 downto 26) = "000101") or (instr_in(31 downto 26) = "011101"))then
-- mux_pc_out <= id_ip;
-- else
-- mux_pc_out <= if_ip;
-- end if;
-- end if;
-- end process;
--last_instruction_proc: process(clk) is
--begin
-- if (clk'event and clk = '1') then
-- last_instruction <= instr_in;
-- end if;
--end process;
end architecture structure_cpu_datapath;
| mit |
jonathanrainer/serial_processors_project | simulations/greendroid_core_simulations/sources/divu/complete_divu_core.vhd | 1 | 2710 | library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity DIVUCoreAndMemory is
PORT (
in0 : IN std_logic_vector(31 DOWNTO 0);
in1 : IN std_logic_vector(31 DOWNTO 0);
in2 : IN std_logic_vector(31 DOWNTO 0);
out0 : OUT std_logic_vector(31 DOWNTO 0);
out1 : OUT std_logic_vector(31 DOWNTO 0);
out2 : OUT std_logic_vector(31 DOWNTO 0);
frame_pointer : IN std_logic_vector(31 DOWNTO 0);
frame_pointer_out : OUT std_logic_vector(31 DOWNTO 0);
rst : IN std_logic;
clck : IN std_logic;
mem_wait : IN std_logic;
mem_push : IN std_logic_vector(31 DOWNTO 0)
);
end DIVUCoreAndMemory;
architecture Structure of DIVUCoreAndMemory is
component GreenDroidDIVUCore
PORT (
i00 : IN std_logic_vector(31 DOWNTO 0);
i01 : IN std_logic_vector(31 DOWNTO 0);
i02 : IN std_logic_vector(31 DOWNTO 0);
r00 : OUT std_logic_vector(31 DOWNTO 0);
r01 : OUT std_logic_vector(31 DOWNTO 0);
r02 : OUT std_logic_vector(31 DOWNTO 0);
FP : IN std_logic_vector(31 DOWNTO 0);
FPout : OUT std_logic_vector(31 DOWNTO 0);
M_ADDR : OUT std_logic_vector(31 DOWNTO 0);
M_DATA : INOUT std_logic_vector(31 DOWNTO 0);
M_RD : INOUT std_logic;
M_WR : INOUT std_logic;
M_RDY : IN std_logic;
reset : IN std_logic;
CLK : IN std_logic
);
end component;
component mem
PORT (
M_ADDR : IN std_logic_vector(31 DOWNTO 0);
M_DATA : INOUT std_logic_vector(31 DOWNTO 0);
M_RD : IN std_logic;
M_WR : IN std_logic;
M_RDY : OUT std_logic;
MWAIT : IN std_logic;
MDAT : IN std_logic_vector(31 DOWNTO 0)
);
end component;
signal sig_M_ADDR, sig_M_DATA : std_logic_vector(31 DOWNTO 0);
signal sig_M_RD, sig_M_WR, sig_M_RDY : std_logic;
begin
Core: GreenDroidDIVUCore
port map (
i00 => in0, i01 => in1, i02 => in2,
r00 => out0, r01 => out1, r02 => out2,
FP => frame_pointer, FPout => frame_pointer_out,
M_ADDR => sig_M_ADDR,
M_DATA => sig_M_DATA,
M_RD => sig_M_RD,
M_WR => sig_M_WR,
M_RDY => sig_M_RDY,
reset => rst,
CLK => clck
);
mymem: mem
port map(
M_ADDR => sig_M_ADDR,
M_DATA => sig_M_DATA,
M_RD => sig_M_RD,
M_WR => sig_M_WR,
M_RDY => sig_M_RDY,
MWAIT => mem_wait,
MDAT => mem_push
);
end Structure;
| mit |
plac-lab/TMIIaTest | Firmware/src/gig_eth/KCU105/gig_eth_mac_resets.vhd | 4 | 9190 | --------------------------------------------------------------------------------
-- File : tri_mode_ethernet_mac_0_example_design_resets.vhd
-- Author : Xilinx Inc.
-- -----------------------------------------------------------------------------
-- (c) Copyright 2012 Xilinx, Inc. All rights reserved.
--
-- This file contains confidential and proprietary information
-- of Xilinx, Inc. and is protected under U.S. and
-- international copyright and other intellectual property
-- laws.
--
-- DISCLAIMER
-- This disclaimer is not a license and does not grant any
-- rights to the materials distributed herewith. Except as
-- otherwise provided in a valid license issued to you by
-- Xilinx, and to the maximum extent permitted by applicable
-- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
-- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
-- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
-- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
-- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
-- (2) Xilinx shall not be liable (whether in contract or tort,
-- including negligence, or under any other theory of
-- liability) for any loss or damage of any kind or nature
-- related to, arising under or in connection with these
-- materials, including for any direct, or any indirect,
-- special, incidental, or consequential loss or damage
-- (including loss of data, profits, goodwill, or any type of
-- loss or damage suffered as a result of any action brought
-- by a third party) even if such damage or loss was
-- reasonably foreseeable or Xilinx had been advised of the
-- possibility of the same.
--
-- CRITICAL APPLICATIONS
-- Xilinx products are not designed or intended to be fail-
-- safe, or for use in any application requiring fail-safe
-- performance, such as life-support or safety devices or
-- systems, Class III medical devices, nuclear facilities,
-- applications related to the deployment of airbags, or any
-- other applications that could lead to death, personal
-- injury, or severe property or environmental damage
-- (individually and collectively, "Critical
-- Applications"). Customer assumes the sole risk and
-- liability of any use of Xilinx products in Critical
-- Applications, subject only to applicable laws and
-- regulations governing limitations on product liability.
--
-- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
-- PART OF THIS FILE AT ALL TIMES.
-- -----------------------------------------------------------------------------
-- Description: This block generates fully synchronous resets for each clock domain
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity tri_mode_ethernet_mac_0_example_design_resets is
port (
-- clocks
s_axi_aclk : in std_logic;
gtx_clk : in std_logic;
-- asynchronous resets
glbl_rst : in std_logic;
reset_error : in std_logic;
rx_reset : in std_logic;
tx_reset : in std_logic;
dcm_locked : in std_logic;
-- synchronous reset outputs
glbl_rst_intn : out std_logic;
gtx_resetn : out std_logic := '0';
s_axi_resetn : out std_logic := '0';
phy_resetn : out std_logic;
chk_resetn : out std_logic := '0'
);
end tri_mode_ethernet_mac_0_example_design_resets;
architecture RTL of tri_mode_ethernet_mac_0_example_design_resets is
------------------------------------------------------------------------------
-- Component declaration for the reset synchroniser
------------------------------------------------------------------------------
component tri_mode_ethernet_mac_0_reset_sync
port (
clk : in std_logic; -- clock to be sync'ed to
enable : in std_logic;
reset_in : in std_logic; -- Active high asynchronous reset
reset_out : out std_logic -- "Synchronised" reset signal
);
end component;
------------------------------------------------------------------------------
-- Component declaration for the synchroniser
------------------------------------------------------------------------------
component tri_mode_ethernet_mac_0_sync_block
port (
clk : in std_logic;
data_in : in std_logic;
data_out : out std_logic
);
end component;
-- define internal signals
signal s_axi_pre_resetn : std_logic := '0';
signal s_axi_reset_int : std_logic;
signal combined_reset : std_logic;
signal gtx_pre_resetn : std_logic := '0';
signal gtx_clk_reset_int : std_logic;
signal clear_checker : std_logic;
signal chk_pre_resetn : std_logic := '0';
signal chk_reset_int : std_logic;
signal dcm_locked_sync : std_logic;
signal glbl_rst_int : std_logic;
signal phy_resetn_int : std_logic;
signal phy_reset_count : unsigned(5 downto 0) := (others => '0');
begin
------------------------------------------------------------------------------
-- Synchronise the async dcm_locked into the gtx_clk clock domain
------------------------------------------------------------------------------
dcm_sync : tri_mode_ethernet_mac_0_sync_block
port map (
clk => gtx_clk,
data_in => dcm_locked,
data_out => dcm_locked_sync
);
------------------------------------------------------------------------------
-- Generate resets required for the fifo side signals etc
------------------------------------------------------------------------------
-- in each case the async reset is first captured and then synchronised
-----------------
-- global reset
glbl_reset_gen : tri_mode_ethernet_mac_0_reset_sync
port map (
clk => gtx_clk,
enable => dcm_locked_sync,
reset_in => glbl_rst,
reset_out => glbl_rst_int
);
glbl_rst_intn <= not glbl_rst_int;
-----------------
-- AXI-Lite reset
axi_lite_reset_gen : tri_mode_ethernet_mac_0_reset_sync
port map (
clk => s_axi_aclk,
enable => phy_resetn_int,
reset_in => glbl_rst,
reset_out => s_axi_reset_int
);
-- Create fully synchronous reset in the s_axi clock domain.
axi_lite_reset_p : process(s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if s_axi_reset_int = '1' then
s_axi_pre_resetn <= '0';
s_axi_resetn <= '0';
else
s_axi_pre_resetn <= '1';
s_axi_resetn <= s_axi_pre_resetn;
end if;
end if;
end process axi_lite_reset_p;
-----------------
-- axi_lite clock reset
combined_reset <= glbl_rst or rx_reset or tx_reset;
gtx_reset_gen : tri_mode_ethernet_mac_0_reset_sync
port map (
clk => gtx_clk,
enable => dcm_locked_sync,
reset_in => combined_reset,
reset_out => gtx_clk_reset_int
);
-- Create fully synchronous reset in the gtx_clk domain.
gtx_reset_p : process(gtx_clk)
begin
if gtx_clk'event and gtx_clk = '1' then
if gtx_clk_reset_int = '1' then
gtx_pre_resetn <= '0';
gtx_resetn <= '0';
else
gtx_pre_resetn <= '1';
gtx_resetn <= gtx_pre_resetn;
end if;
end if;
end process gtx_reset_p;
-----------------
-- data check reset
clear_checker <= glbl_rst or reset_error;
-- ymei
-- chk_reset_int <= clear_checker;
chk_reset_gen : tri_mode_ethernet_mac_0_reset_sync
port map (
clk => gtx_clk,
enable => dcm_locked_sync,
reset_in => clear_checker,
reset_out => chk_reset_int
);
-- Create fully synchronous reset in the gtx_clk domain.
chk_reset_p : process(gtx_clk)
begin
if gtx_clk'event and gtx_clk = '1' then
if chk_reset_int = '1' then
chk_pre_resetn <= '0';
chk_resetn <= '0';
else
chk_pre_resetn <= '1';
chk_resetn <= chk_pre_resetn;
end if;
end if;
end process chk_reset_p;
-----------------
-- PHY reset
-- the phy reset output (active low) needs to be held for at least 10x25MHZ cycles
-- this is derived using the 125MHz available and a 6 bit counter
phy_reset_p : process(gtx_clk)
begin
if gtx_clk'event and gtx_clk = '1' then
if glbl_rst_int = '1' then
phy_resetn_int <= '0';
phy_reset_count <= (others => '0');
else
if phy_reset_count /= "111111" then
phy_reset_count <= phy_reset_count + "000001";
else
phy_resetn_int <= '1';
end if;
end if;
end if;
end process phy_reset_p;
phy_resetn <= phy_resetn_int;
end RTL;
| mit |
plac-lab/TMIIaTest | Firmware/src/ten_gig_eth_rx_parser.vhd | 2 | 10043 | ----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 12/21/2013 02:38:36 AM
-- Design Name:
-- Module Name: ten_gig_eth_rx_parser - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Parses incoming packets. Deals WITH ARP AND UDP and generates appropriate
-- action commands.
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
USE ieee.numeric_std.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx leaf cells in this code.
LIBRARY UNISIM;
USE UNISIM.VComponents.ALL;
ENTITY ten_gig_eth_rx_parser IS
PORT (
RESET : IN std_logic;
RX_AXIS_FIFO_ARESETN : OUT std_logic;
-- Everything internal to this module is synchronous to this clock `ACLK'
RX_AXIS_FIFO_ACLK : IN std_logic;
RX_AXIS_FIFO_TDATA : IN std_logic_vector(63 DOWNTO 0);
RX_AXIS_FIFO_TKEEP : IN std_logic_vector(7 DOWNTO 0);
RX_AXIS_FIFO_TVALID : IN std_logic;
RX_AXIS_FIFO_TLAST : IN std_logic;
RX_AXIS_FIFO_TREADY : OUT std_logic;
-- Constants
SRC_MAC : IN std_logic_vector(47 DOWNTO 0);
SRC_IP : IN std_logic_vector(31 DOWNTO 0);
SRC_PORT : IN std_logic_vector(15 DOWNTO 0);
-- Command output fifo interface AFTER parsing the packet
-- dstMAC(48) dstIP(32) dstPort(16) opcode(32)
CMD_FIFO_Q : OUT std_logic_vector(127 DOWNTO 0);
CMD_FIFO_EMPTY : OUT std_logic;
CMD_FIFO_RDREQ : IN std_logic;
CMD_FIFO_RDCLK : IN std_logic
);
END ten_gig_eth_rx_parser;
ARCHITECTURE Behavioral OF ten_gig_eth_rx_parser IS
COMPONENT fifo128x
PORT (
RST : IN std_logic;
WR_CLK : IN std_logic;
RD_CLK : IN std_logic;
DIN : IN std_logic_vector(127 DOWNTO 0);
WR_EN : IN std_logic;
RD_EN : IN std_logic;
DOUT : OUT std_logic_vector(127 DOWNTO 0);
FULL : OUT std_logic;
EMPTY : OUT std_logic
);
END COMPONENT;
--
CONSTANT pktType_ARP : std_logic_vector(15 DOWNTO 0) := x"0806";
CONSTANT pktType_IP : std_logic_vector(15 DOWNTO 0) := x"0800";
CONSTANT opcode_REQ : std_logic_vector(15 DOWNTO 0) := x"0001";
CONSTANT protocol_UDP : std_logic_vector(7 DOWNTO 0) := x"11";
--
SIGNAL clk_i : std_logic;
SIGNAL cmd_fifo_din : std_logic_vector(127 DOWNTO 0);
SIGNAL cmd_fifo_wren : std_logic;
SIGNAL cmd_fifo_full : std_logic;
--
SIGNAL tvalid_prev : std_logic;
SIGNAL tstart : std_logic;
SIGNAL tlast_i : std_logic;
--
SIGNAL dst_mac_reg : std_logic_vector(47 DOWNTO 0);
SIGNAL dst_ip_reg : std_logic_vector(31 DOWNTO 0);
SIGNAL dst_port_reg : std_logic_vector(15 DOWNTO 0);
SIGNAL src_mac_reg : std_logic_vector(47 DOWNTO 0);
SIGNAL src_ip_reg : std_logic_vector(31 DOWNTO 0);
SIGNAL src_port_reg : std_logic_vector(15 DOWNTO 0);
SIGNAL pktType_reg : std_logic_vector(15 DOWNTO 0);
SIGNAL opcode_reg : std_logic_vector(15 DOWNTO 0);
SIGNAL protocol_reg : std_logic_vector(7 DOWNTO 0);
SIGNAL udp_cmd_reg : std_logic_vector(31 DOWNTO 0);
--
TYPE parser_state_type IS (S0, S1, S2, S3, S4, S5, S6);
SIGNAL parser_state : parser_state_type;
SIGNAL cmd_state : parser_state_type;
BEGIN
clk_i <= RX_AXIS_FIFO_ACLK;
RX_AXIS_FIFO_ARESETN <= NOT RESET;
RX_AXIS_FIFO_TREADY <= NOT cmd_fifo_full;
cmd_fifo : fifo128x
PORT MAP (
RST => RESET,
WR_CLK => clk_i,
RD_CLK => CMD_FIFO_RDCLK,
DIN => cmd_fifo_din,
WR_EN => cmd_fifo_wren,
RD_EN => CMD_FIFO_RDREQ,
DOUT => CMD_FIFO_Q,
FULL => cmd_fifo_full,
EMPTY => CMD_FIFO_EMPTY
);
-- catch the rising edge of tvalid
PROCESS (clk_i, RESET) IS
BEGIN
IF falling_edge(clk_i) THEN
tvalid_prev <= RX_AXIS_FIFO_TVALID;
tstart <= RX_AXIS_FIFO_TVALID AND (NOT tvalid_prev);
END IF;
END PROCESS;
parser_sm : PROCESS (clk_i, RESET) IS
BEGIN
IF RESET = '1' THEN
dst_mac_reg <= (OTHERS => '0');
dst_ip_reg <= (OTHERS => '0');
dst_port_reg <= (OTHERS => '0');
src_mac_reg <= (OTHERS => '0');
src_ip_reg <= (OTHERS => '0');
src_port_reg <= (OTHERS => '0');
pktType_reg <= (OTHERS => '0');
opcode_reg <= (OTHERS => '0');
protocol_reg <= (OTHERS => '0');
udp_cmd_reg <= (OTHERS => '0');
parser_state <= S0;
ELSIF rising_edge(clk_i) THEN
tlast_i <= RX_AXIS_FIFO_TLAST;
parser_state <= S0;
CASE parser_state IS
WHEN S0 =>
IF tstart = '1' THEN
dst_mac_reg <= RX_AXIS_FIFO_TDATA(7 DOWNTO 0) &
RX_AXIS_FIFO_TDATA(15 DOWNTO 8) &
RX_AXIS_FIFO_TDATA(23 DOWNTO 16) &
RX_AXIS_FIFO_TDATA(31 DOWNTO 24) &
RX_AXIS_FIFO_TDATA(39 DOWNTO 32) &
RX_AXIS_FIFO_TDATA(47 DOWNTO 40);
src_mac_reg(47 DOWNTO 32) <= RX_AXIS_FIFO_TDATA(55 DOWNTO 48) &
RX_AXIS_FIFO_TDATA(63 DOWNTO 56);
parser_state <= S1;
END IF;
WHEN S1 =>
parser_state <= S1;
IF RX_AXIS_FIFO_TVALID = '1' THEN
src_mac_reg(31 DOWNTO 0) <= RX_AXIS_FIFO_TDATA(7 DOWNTO 0) &
RX_AXIS_FIFO_TDATA(15 DOWNTO 8) &
RX_AXIS_FIFO_TDATA(23 DOWNTO 16) &
RX_AXIS_FIFO_TDATA(31 DOWNTO 24);
pktType_reg <= RX_AXIS_FIFO_TDATA(39 DOWNTO 32) &
RX_AXIS_FIFO_TDATA(47 DOWNTO 40);
parser_state <= S2;
END IF;
WHEN S2 =>
parser_state <= S2;
IF RX_AXIS_FIFO_TVALID = '1' THEN
opcode_reg <= RX_AXIS_FIFO_TDATA(39 DOWNTO 32) &
RX_AXIS_FIFO_TDATA(47 DOWNTO 40);
protocol_reg <= RX_AXIS_FIFO_TDATA(63 DOWNTO 56);
parser_state <= S3;
END IF;
WHEN S3 =>
parser_state <= S3;
IF RX_AXIS_FIFO_TVALID = '1' THEN
IF pktType_reg = pktType_ARP THEN
src_ip_reg <= RX_AXIS_FIFO_TDATA(39 DOWNTO 32) &
RX_AXIS_FIFO_TDATA(47 DOWNTO 40) &
RX_AXIS_FIFO_TDATA(55 DOWNTO 48) &
RX_AXIS_FIFO_TDATA(63 DOWNTO 56);
ELSE
src_ip_reg <= RX_AXIS_FIFO_TDATA(23 DOWNTO 16) &
RX_AXIS_FIFO_TDATA(31 DOWNTO 24) &
RX_AXIS_FIFO_TDATA(39 DOWNTO 32) &
RX_AXIS_FIFO_TDATA(47 DOWNTO 40);
dst_ip_reg(31 DOWNTO 16) <= RX_AXIS_FIFO_TDATA(55 DOWNTO 48) &
RX_AXIS_FIFO_TDATA(63 DOWNTO 56);
END IF;
parser_state <= S4;
END IF;
WHEN S4 =>
parser_state <= S4;
IF RX_AXIS_FIFO_TVALID = '1' THEN
IF pktType_reg = pktType_ARP THEN
dst_ip_reg(31 DOWNTO 16) <= RX_AXIS_FIFO_TDATA(55 DOWNTO 48) &
RX_AXIS_FIFO_TDATA(63 DOWNTO 56);
ELSE
dst_ip_reg(15 DOWNTO 0) <= RX_AXIS_FIFO_TDATA(7 DOWNTO 0) &
RX_AXIS_FIFO_TDATA(15 DOWNTO 8);
src_port_reg <= RX_AXIS_FIFO_TDATA(23 DOWNTO 16) &
RX_AXIS_FIFO_TDATA(31 DOWNTO 24);
dst_port_reg <= RX_AXIS_FIFO_TDATA(39 DOWNTO 32) &
RX_AXIS_FIFO_TDATA(47 DOWNTO 40);
END IF;
parser_state <= S5;
END IF;
WHEN S5 =>
parser_state <= S5;
IF RX_AXIS_FIFO_TVALID = '1' THEN
IF pktType_reg = pktType_ARP THEN
dst_ip_reg(15 DOWNTO 0) <= RX_AXIS_FIFO_TDATA(7 DOWNTO 0) &
RX_AXIS_FIFO_TDATA(15 DOWNTO 8);
ELSE
udp_cmd_reg <= RX_AXIS_FIFO_TDATA(47 DOWNTO 16);
END IF;
IF RX_AXIS_FIFO_TLAST = '1' THEN
parser_state <= S0;
ELSE
parser_state <= S6;
END IF;
END IF;
WHEN S6 =>
parser_state <= S6;
IF RX_AXIS_FIFO_TLAST = '1' THEN
parser_state <= S0;
END IF;
WHEN OTHERS =>
parser_state <= S0;
END CASE;
END IF;
END PROCESS parser_sm;
PROCESS (clk_i, RESET) IS
BEGIN
IF RESET = '1' THEN
cmd_state <= S0;
ELSIF falling_edge(clk_i) THEN
cmd_fifo_wren <= '0';
cmd_state <= S0;
CASE cmd_state IS
WHEN S0 =>
IF tlast_i = '1' THEN
cmd_state <= S1;
END IF;
WHEN S1 =>
IF pktType_reg = pktType_ARP THEN
IF (dst_ip_reg = SRC_IP) AND (opcode_reg = opcode_REQ) THEN -- valid ARP request
cmd_fifo_din <= src_mac_reg & src_ip_reg & src_port_reg & x"00000000";
cmd_fifo_wren <= '1';
END IF;
ELSIF (pktType_reg = pktType_IP) AND (protocol_reg = protocol_UDP)
AND (dst_mac_reg = SRC_MAC) AND (dst_ip_reg = SRC_IP) AND (dst_port_reg = SRC_PORT)
THEN -- valid UDP packet
cmd_fifo_din <= src_mac_reg & src_ip_reg & src_port_reg & udp_cmd_reg;
cmd_fifo_wren <= '1';
END IF;
cmd_state <= S0;
WHEN OTHERS =>
cmd_state <= S0;
END CASE;
END IF;
END PROCESS;
END Behavioral;
| mit |
plac-lab/TMIIaTest | Firmware/src/gig_eth/KC705/fifo/tri_mode_ethernet_mac_0_bram_tdp.vhd | 5 | 4519 | --------------------------------------------------------------------------------
-- Title : RAM memory for RX and TX client FIFOs
-- Version : 1.0
-- Project : Tri-Mode Ethernet MAC
--------------------------------------------------------------------------------
-- File : tri_mode_ethernet_mac_0_bram_tdp.vhd
-- Author : Xilinx Inc.
-- -----------------------------------------------------------------------------
-- (c) Copyright 2013 Xilinx, Inc. All rights reserved.
--
-- This file contains confidential and proprietary information
-- of Xilinx, Inc. and is protected under U.S. and
-- international copyright and other intellectual property
-- laws.
--
-- DISCLAIMER
-- This disclaimer is not a license and does not grant any
-- rights to the materials distributed herewith. Except as
-- otherwise provided in a valid license issued to you by
-- Xilinx, and to the maximum extent permitted by applicable
-- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
-- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
-- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
-- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
-- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
-- (2) Xilinx shall not be liable (whether in contract or tort,
-- including negligence, or under any other theory of
-- liability) for any loss or damage of any kind or nature
-- related to, arising under or in connection with these
-- materials, including for any direct, or any indirect,
-- special, incidental, or consequential loss or damage
-- (including loss of data, profits, goodwill, or any type of
-- loss or damage suffered as a result of any action brought
-- by a third party) even if such damage or loss was
-- reasonably foreseeable or Xilinx had been advised of the
-- possibility of the same.
--
-- CRITICAL APPLICATIONS
-- Xilinx products are not designed or intended to be fail-
-- safe, or for use in any application requiring fail-safe
-- performance, such as life-support or safety devices or
-- systems, Class III medical devices, nuclear facilities,
-- applications related to the deployment of airbags, or any
-- other applications that could lead to death, personal
-- injury, or severe property or environmental damage
-- (individually and collectively, "Critical
-- Applications"). Customer assumes the sole risk and
-- liability of any use of Xilinx products in Critical
-- Applications, subject only to applicable laws and
-- regulations governing limitations on product liability.
--
-- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
-- PART OF THIS FILE AT ALL TIMES.
-- -----------------------------------------------------------------------------
-- Description: This is a parameterized inferred block RAM
--
--------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
--------------------------------------------------------------------------------
-- The entity declaration for the block RAM
--------------------------------------------------------------------------------
entity tri_mode_ethernet_mac_0_bram_tdp is
generic (
DATA_WIDTH : integer := 8;
ADDR_WIDTH : integer := 12
);
port (
-- Port A
a_clk : in std_logic;
a_rst : in std_logic;
a_wr : in std_logic;
a_addr : in std_logic_vector(ADDR_WIDTH-1 downto 0);
a_din : in std_logic_vector(DATA_WIDTH-1 downto 0);
-- Port B
b_clk : in std_logic;
b_en : in std_logic;
b_rst : in std_logic;
b_addr : in std_logic_vector(ADDR_WIDTH-1 downto 0);
b_dout : out std_logic_vector(DATA_WIDTH-1 downto 0)
);
end tri_mode_ethernet_mac_0_bram_tdp;
architecture rtl of tri_mode_ethernet_mac_0_bram_tdp is
-- Shared memory
constant RAM_DEPTH : integer := 2 ** ADDR_WIDTH;
type mem_type is array ( RAM_DEPTH-1 downto 0 ) of std_logic_vector(DATA_WIDTH-1 downto 0);
shared variable mem : mem_type;
begin
-- To write use port A
process(a_clk)
begin
if(a_clk'event and a_clk='1') then
if(a_rst='0' and a_wr='1') then
mem(conv_integer(a_addr)) := a_din;
end if;
end if;
end process;
-- To read use Port B
process(b_clk)
begin
if(b_clk'event and b_clk='1') then
if (b_rst='1') then
b_dout <= (others => '0');
elsif (b_en='1') then
b_dout <= mem(conv_integer(b_addr));
end if;
end if;
end process;
end rtl;
| mit |
Pajeh/mips1 | test/vhdl/tb_cpu_datapath.vhd | 1 | 19973 | -- revision history:
-- 2015-08-06 Lukas Jaeger created
-- 2015-08-07 Lukas Jaeger added instructions of counter-example
-- 2015-08-10 Lukas jaeger Made it more clear
library IEEE;
use IEEE.std_logic_1164.ALL;
use IEEE.numeric_std.ALL;
library WORK;
use WORK.cpu_pack.all;
entity tb_cpu_datapath is
end entity tb_cpu_datapath;
architecture behavioural of tb_cpu_datapath is
component cpu_datapath
port(
clk : in std_logic;
rst : in std_logic;
instr_addr : out std_logic_vector(31 downto 0);
data_addr : out std_logic_vector(31 downto 0);
instr_in : in std_logic_vector(31 downto 0);
data_to_cpu : in std_logic_vector(31 downto 0);
data_from_cpu : out std_logic_vector(31 downto 0);
alu_op : in std_logic_vector(5 downto 0);
exc_mux1 : in std_logic_vector(1 downto 0);
exc_mux2 : in std_logic_vector(1 downto 0);
exc_alu_zero : out std_logic_vector(0 downto 0);
memstg_mux : in std_logic;
id_regdest_mux : in std_logic_vector (1 downto 0);
id_regshift_mux : in std_logic_vector (1 downto 0);
id_enable_regs : in std_logic;
in_mux_pc : in std_logic;
stage_control : in std_logic_vector (4 downto 0)
);
end component;
signal clk, rst, memstg_mux, id_enable_regs, in_mux_pc : std_logic := '0';
signal instr_in, data_to_cpu : std_logic_vector (31 downto 0) := x"00000000";
signal alu_op : std_logic_vector (5 downto 0) := "000000";
signal exc_mux1, exc_mux2, id_regdest_mux, id_regshift_mux : std_logic_vector(1 downto 0) := "00";
signal exc_alu_zero : std_logic_vector(0 downto 0) := "0";
signal stage_control : std_logic_vector(4 downto 0) := "11111";
-- Tweak clock frequency here
constant clk_time : time := 10 ns;
begin
dut: cpu_datapath port map(
clk => clk,
rst => rst,
instr_in => instr_in,
data_to_cpu => data_to_cpu,
alu_op => alu_op,
exc_mux1 => exc_mux1,
exc_mux2 => exc_mux2,
memstg_mux => memstg_mux,
id_regdest_mux => id_regdest_mux,
id_regshift_mux => id_regshift_mux,
id_enable_regs => id_enable_regs,
in_mux_pc => in_mux_pc,
stage_control => stage_control
);
clk_proc : process
begin
clk <= '0';
wait for clk_time / 2;
clk <= '1';
wait for clk_time / 2;
end process;
data_proc : process
begin
-- Reset
rst <= '1';
wait for clk_time;
rst <= '0';
--usually the first instruction address should be dropping out at
-- instr_addr and it should be 00000000, so we return an instruction
-- and set the ID's muxes for correct decoding
-- To test:
-- instr_address: 00000004
-- if: Instruction 1: LUI $gp, 1
instr_in <= x"3c1c0001";
--id: Nothing
id_regdest_mux <= "00";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Nothing
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000001";
-- mem: Nothing
memstg_mux <= '1';
-- wb: Nothing
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- shift_2 : 10;
-- imm_2: 00000001
-- regdest_2: 1C
-- instr_address: 00000004
-- ip_2 : 00000000
instr_in <= x"279c8070"; -- Instruction 2: ADDIU $gp, $gp, -32656
--id: Instruction 1 (LUI $gp, 1)
id_regdest_mux <= "10";
id_regshift_mux <="01";
in_mux_pc <= '0';
--ex: Nothing
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000001";
-- mem: Nothing
memstg_mux <= '1';
-- wb: Nothing
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- regdest_2: 1C
-- reg_a_2: 00010000;
-- imm_2: 8070
-- instr_address: 00000008
-- ip_2 : 00000004
-- alu_result_3: 000010000
-- regdest_3: 1C
-- ip_3 : 00000000
instr_in <= x"08000004"; -- Instruction 3: J 0x10
--id: Instruction 2 (ADDIU $gp, $gp, -32656)
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 1 (LUI $gp, 1)
exc_mux1 <= "00";
exc_mux2 <= "01";
alu_op <= "000100";
-- mem: Nothing
memstg_mux <= '1';
-- wb: Nothing
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- id_ip : 000010
-- regdest_3: 1C
-- alu_result_3: 00018070
-- writeback_4: 00010000
-- regdest_4: 1C
-- instr_addr: 00000010
instr_in <= x"3c1d00a2"; -- Instruction 4: LUI $sp,0xa2
--id: Instruction 3 (J 0x10)
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '1';
--ex: Instruction 2 (ADDIU $gp, $gp, -32656)
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: Instruction 1 (LUI $gp, 1)
memstg_mux <= '0';
-- wb: Nothing
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- regdest_2: 1D
-- imm_2: 000000a2;
-- regdest_4: 1C
-- writeback_4: 00018070
-- register_file (28): 00010000
-- instr_addr : 00000014
instr_in <= x"8f828010"; -- Instruction 5: LW $v0,-32752(gp)
--id: Instruction 4
id_regdest_mux <= "10";
id_regshift_mux <="01";
in_mux_pc <= '0';
--ex: Instruction 3
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000001";
-- mem: Instruction 2
memstg_mux <= '0';
-- wb: Instruction 1
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2: 00018070
-- imm_2: FFFF8010
-- regdest_2: 02
-- alu_result_3: 00a20000
-- regdest_3: 1D
instr_in <= x"00000000"; -- Instruction 6: NOP
--id: Instruction 5
id_regdest_mux <= "10";
id_regshift_mux <="01";
in_mux_pc <= '0';
--ex: Instruction 4
exc_mux1 <= "00";
exc_mux2 <= "01";
alu_op <= "000100";
-- mem: Instruction 3
memstg_mux <= '0';
-- wb: Instruction 2
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2 : 00000000
-- ieg_b_2 : 00000000
-- reg_shift_2: 00000
-- regdest_2 : 00000
-- imm_2 : 00000000
-- regdest_3 : 02
-- alu_result_3 : 00010080
-- regdest_4 : 1D
-- writeback_4 : 00a20000
instr_in <= x"a0400000"; -- Instruction 7: SB $zero,0($v0)
--id: Instruction 6
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 5
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: Instruction 4
memstg_mux <= '0';
-- wb: Instruction 3
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- reg_b_2: 00000000
-- imm_2 : 00000000
-- reg_a: 11382187
-- regdest_3 : 00
-- alu_result_3 : 00000000
-- writeback_4 : 11382187
-- regdest_4 : 02;
instr_in <= x"af80800c"; -- Instruction 8: SW $zero,-32756($gp)
--id: Instruction 7
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 6
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000100";
-- mem: Instruction 5
memstg_mux <= '1';
data_to_cpu <= x"11382187";
-- wb: Instruction 4
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2: 00018070
-- reg_b_2: 00000000
-- imm_2: FFFF800c
-- data_3: 00000000
-- alu_result: 11382187
-- writeback_4: 00000000
-- regdest_4 : 00
-- data_from_cpu: 00000000
-- data_addr: 11382187
instr_in <=x"8f82800c"; -- Instruction 9: LW $v0,-32756($gp)
--id: Instruction 8
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 7
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: Instruction 6
memstg_mux <= '0';
-- wb: INstruction 5
id_enable_regs <= '1';
wait for clk_time;
--To test
--reg_a_2: 00018070
-- imm_2: FFFF800C
-- regdest_2: 02
-- alu_result_3: 0001007C
-- data_3: 00000000
-- data_from_cpu: 00000000
-- data_addr: 10007C
--if: Instruction 10 (NOP)
instr_in <= x"00000000";
--id: Instruction 9
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 8
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: Instruction 7
memstg_mux <= '0';
-- wb: Instruction 6
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- reg_a_2: 00000000
-- reg_b_2: 00000000
-- shift_2: 00000
-- imm_2: 00000000
-- regdest_2: 00
-- alu_result_3: 0001007C
-- data_3: 11382187
-- data_from_cpu: 11382187
-- data_addr: 0001007C
--if: Instruction 11 (SLTI $vo, $v0, 16);
instr_in <= x"28420010";
--id: Instruction 10
id_regdest_mux <= "00";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 9
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: Instruction 8
memstg_mux <= '0';
-- wb: Instruction 7
id_enable_regs <= '0';
wait for clk_time;
--To test:
-- reg_a_2: 21871138
-- imm_2: 10
-- regdest_2 : 02
-- alu_result: 00000000
-- regdest_3: 00
-- regdest_4: 02
-- writeback_4: 21871138
--if:12 (BEQZ $vo, 0x 58)
instr_in <= x"1040000a";
--id: 11
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 10
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000100";
-- mem: 9
memstg_mux <= '1';
data_to_cpu <=x"21871138";
-- wb: 8
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- next instr_addr: 58
-- alu_result: 00000000
-- regdest_3: 02
-- writeback_4: 000000000
-- regdest_4 : 00
-- if: Instruction 13 (NOP)
instr_in <= x"00000000";
--id: 12
id_regdest_mux <= "00";
id_regshift_mux <="00";
in_mux_pc <= '1';
--ex: 11
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "001000";
-- mem: 10
memstg_mux <= '0';
-- wb: 9
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2: 00000000
-- reg_b_2: 00000000
-- imm_2: 00000000
-- shift_2: 00
-- writeback_4: 00000000
-- regdest_4: 02
--if: Instruction 23 (LW $v1, -32752($gp))
instr_in <= x"8f838010";
--id: Instruction 13
id_regdest_mux <= "00";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: Instruction 12
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000100";
-- mem: Instruction 11
memstg_mux <= '0';
-- wb: Instruction 10
id_enable_regs <= '0';
wait for clk_time;
-- To test
-- reg_a_2: 00018070
-- imm_2: FFFF8010
-- regdest_2: 03
-- alu_result_3: 00000000
-- regdest_3: 00
--if: 24 (NOP)
instr_in <= x"00000000";
--id: 23
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 13
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "000100";
-- mem: 12
memstg_mux <= '0';
-- wb:
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2: 00000000
-- reg_b_2: 00000000
-- shift_2: 00
-- imm_2: 00000000
-- regdest_2: 00
-- alu_result_3: 00010080
-- regdest_3: 03
-- writeback_4:00000000
-- regdest_4: 00
--if: 25 (LBU v0,0(v1))
instr_in <= x"90620000";
--id: 24
id_regdest_mux <= "00";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 23
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: 13
memstg_mux <= '0';
-- wb: 12
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- reg_a_2: 00C0FFEE
-- imm_2: 00000000;
-- regdest_2: 02
-- alu_result_3:00000000
-- regdest_3: 00
-- writeback_4: 00C0FFEE
-- regdest_4: 03
--if: Instruction 26 (NOP)
instr_in <= x"00000000";
--id: 25
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 24
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "001000";
-- mem: 23
memstg_mux <= '1';
data_to_cpu <= x"00C0FFEE";
-- wb: 13
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- reg_a_2: 00000000
-- reg_b_2: 00000000
-- shift_2: 00
-- imm_2: 00000000
-- regdest_2: 00
-- alu_result_3: 00C0FFEE
-- regdest_3: 02
-- writeback_4: 000000000
-- regdest_4: 00
--if: Instruction 27 (ADDIU $v0, $v0, 1)
instr_in <= x"24420001";
--id: 26
id_regdest_mux <= "00";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 25
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: 24
memstg_mux <= '0';
-- wb: 23
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2: 00000049
-- imm_2: 00000001
-- regdest_2: 02
-- alu_result_3: 00000000
-- regdest_3: 00
-- writeback_4: 00000049
-- regdest_4: 02
--if: Instruction 28 (ANDI $v0,$v0,0xff)
instr_in <= x"304200ff";
--id: 27
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 26
exc_mux1 <= "10";
exc_mux2 <= "00";
alu_op <= "001000";
-- mem: 25
memstg_mux <= '1';
data_to_cpu <=x"00000049";
-- wb: 24
id_enable_regs <= '0';
wait for clk_time;
-- To test:
-- reg_a_2: 0000004A
-- imm_2: 000000ff
-- regdest_2: 02
-- alu_result_3: 0000004A
-- regdest_3: 02
-- writeback_4:00000000
-- regdest_4:00
--if: Instruction 29: (SB $vo, 0($v1))
instr_in <= x"a0620000";
--id: 28
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 27
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100000";
-- mem: 26
memstg_mux <= '0';
-- wb: 25
id_enable_regs <= '1';
wait for clk_time;
-- To test:
-- reg_a_2: 00C0FFEE
-- reg_b_2: 0000004A
-- imm_2: 00000000
--alu_result_3: 0000004A
--regdest_3: 02
--writeback_4: 0000004A
--regdest_4: 02
--if: Instruction 30 (J 0x1C)
instr_in <= x"08000007";
--id: 29
id_regdest_mux <= "10";
id_regshift_mux <="00";
in_mux_pc <= '0';
--ex: 28
exc_mux1 <= "10";
exc_mux2 <= "01";
alu_op <= "100100";
-- mem: 27
memstg_mux <= '0';
-- wb: 26
id_enable_regs <= '0';
wait for clk_time;
end process;
end architecture;
| mit |
jonathanrainer/serial_processors_project | simulations/greendroid_core_simulations/sources/atoi/atoi_testbench.vhd | 1 | 2903 | ----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 04.03.2016 11:22:26
-- Design Name:
-- Module Name: rem_testbench - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--use IEEE.NUMERIC_STD.ALL;
-- Uncomment the following library declaration if instantiating
-- any Xilinx leaf cells in this code.
--library UNISIM;
--use UNISIM.VComponents.all;
entity atoi_testbench is
end atoi_testbench;
architecture Behavioural of atoi_testbench is
signal sig_i00, sig_i01, sig_r00, sig_r01,
sig_FP, sig_FPout,sig_MDAT : std_logic_vector(31 DOWNTO 0);
signal sig_reset, sig_CLK, sig_MWAIT : std_logic;
component ATOICoreAndMemory is
PORT (
in0 : IN std_logic_vector(31 DOWNTO 0);
in1 : IN std_logic_vector(31 DOWNTO 0);
out0 : OUT std_logic_vector(31 DOWNTO 0);
out1 : OUT std_logic_vector(31 DOWNTO 0);
frame_pointer : IN std_logic_vector(31 DOWNTO 0);
frame_pointer_out : OUT std_logic_vector(31 DOWNTO 0);
rst : IN std_logic;
clck : IN std_logic;
mem_wait : IN std_logic;
mem_push : IN std_logic_vector(31 DOWNTO 0)
);
end component;
begin
uut: ATOICoreAndMemory
port map (
in0 => sig_i00,
in1 => sig_i01,
out0 => sig_r00,
out1 => sig_r01,
frame_pointer => sig_FP,
frame_pointer_out => sig_FPout,
rst => sig_reset,
clck => sig_CLK,
mem_wait => sig_MWAIT,
mem_push => sig_MDAT
);
clock: process
constant clock_period:time := 40ns;
begin
wait for 200ns;
for I in 0 to 100 loop
sig_CLK <= '0';
wait for clock_period/2;
sig_CLK <= '1';
wait for clock_period/2;
end loop;
wait;
end process clock;
test: process begin
sig_MWAIT <= '1';
sig_reset <= '1';
wait for 100ns;
sig_reset <= '0';
wait for 100ns;
sig_i00 <= "00000000000000000000000000100000";
sig_i01 <= "00000000000000000000000000100101";
sig_MDAT <= "00000000000000000000000000011111";
sig_FP <= "00000000000000000000000001100000";
wait;
end process test;
end Behavioural;
| mit |
cadesalaberry/digital-system-design | lab3/g23_mars_timer.vhd | 1 | 939 | -- A Mars timer calibrated for a 50MHz clock.
--
-- entity name: g23_mars_timer
--
-- Copyright (C) 2014 cadesalaberry, grahamludwinski
--
-- Version 1.0
--
-- Author:
-- Charles-Antoine de Salaberry; [email protected],
-- Graham Ludwinski; [email protected]
--
-- Date: 13/03/2014
LIBRARY ieee;
USE ieee.STD_LOGIC_1164.all;
ENTITY g23_mars_timer IS
PORT (
clk : in STD_LOGIC;
enable : in STD_LOGIC;
reset : in STD_LOGIC;
pulse : out STD_LOGIC
);
END g23_mars_timer;
ARCHITECTURE alpha OF g23_mars_timer IS
COMPONENT g23_generic_timer
GENERIC (max : natural := 0);
PORT (
clk : in STD_LOGIC;
enable : in STD_LOGIC;
reset : in STD_LOGIC;
pulse : out STD_LOGIC
);
END COMPONENT;
BEGIN
earth : g23_generic_timer
-- GENERIC MAP (max => 51374562)
GENERIC MAP (max => 102)
PORT MAP (
clk => clk,
enable => enable,
reset => reset,
pulse => pulse
);
END alpha;
| mit |
cadesalaberry/digital-system-design | lab5/g23_UTC_to_MTC.vhd | 1 | 6003 | -- Converts an earth time and date into mars time of day.
--
-- entity name: g23_UTC_to_MTC
--
-- Copyright (C) 2014 cadesalaberry, grahamludwinski
--
-- Version 1.0
--
-- Author:
-- Charles-Antoine de Salaberry; [email protected],
-- Graham Ludwinski; [email protected]
--
-- Date: 28/03/2014
library ieee; -- allows use of the std_logic_vector type
use ieee.std_logic_1164.all;
use IEEE.numeric_std.all;
library lpm;
USE lpm.lpm_components.all;
entity g23_UTC_to_MTC is
PORT (
clock : in STD_LOGIC; -- ASYNC, Should be connected to the master 50MHz clock.
reset : in STD_LOGIC; -- ASYNC, When high the counts are all set to zero.
enable : in STD_LOGIC; -- SYNC, A pulse with a width of 1 master clock cycle.
-- Earth date input
Year : in STD_LOGIC_VECTOR(11 downto 0);
Month : in STD_LOGIC_VECTOR(3 downto 0);
Day : in STD_LOGIC_VECTOR(4 downto 0);
-- Earth time input
Hour : in STD_LOGIC_VECTOR(4 downto 0);
Minute : in STD_LOGIC_VECTOR(5 downto 0);
Second : in STD_LOGIC_VECTOR(5 downto 0);
-- MTC time on the prime meridian on Mars
Mars_hours : out STD_LOGIC_VECTOR(4 downto 0);
Mars_minutes : out STD_LOGIC_VECTOR(5 downto 0);
Mars_seconds : out STD_LOGIC_VECTOR(5 downto 0);
-- Debug
Year_out : out STD_LOGIC_VECTOR(11 downto 0);
Month_out : out STD_LOGIC_VECTOR(3 downto 0);
Day_out : out STD_LOGIC_VECTOR(4 downto 0);
Num_days : out STD_LOGIC_VECTOR(13 downto 0);
Num_secs : out STD_LOGIC_VECTOR(16 downto 0);
Date_is_reached : out STD_LOGIC
);
end g23_UTC_to_MTC;
architecture cascading of g23_UTC_to_MTC is
COMPONENT g23_YMD_counter
PORT (
clock : in STD_LOGIC; -- ASYNC, Should be connected to the master 50MHz clock.
reset : in STD_LOGIC; -- ASYNC, When high the counts are all set to zero.
count_enable : in STD_LOGIC; -- SYNC, A pulse with a width of 1 master clock cycle.
load_enable : in STD_LOGIC; -- SYNC, if high sets count values to Y_Set, M_Set, and D_Set inputs
y_set : in STD_LOGIC_VECTOR(11 downto 0);
m_set : in STD_LOGIC_VECTOR(3 downto 0);
d_set : in STD_LOGIC_VECTOR(4 downto 0);
years : out STD_LOGIC_VECTOR(11 downto 0);
months : out STD_LOGIC_VECTOR(3 downto 0);
days : out STD_LOGIC_VECTOR(4 downto 0)
);
END COMPONENT;
COMPONENT g23_HMS_counter
PORT (
reset : in STD_LOGIC;
clk : in STD_LOGIC;
load_enable : in STD_LOGIC;
count_enable: in STD_LOGIC;
h_set : in STD_LOGIC_VECTOR(4 downto 0);
m_set : in STD_LOGIC_VECTOR(5 downto 0);
s_set : in STD_LOGIC_VECTOR(5 downto 0);
hours : out STD_LOGIC_VECTOR(4 downto 0);
minutes : out STD_LOGIC_VECTOR(5 downto 0);
seconds : out STD_LOGIC_VECTOR(5 downto 0);
end_of_day : out STD_LOGIC
);
END COMPONENT;
COMPONENT g23_Seconds_to_Days
PORT (
seconds : in unsigned(16 downto 0);
day_fraction : out unsigned(39 downto 0)
);
END COMPONENT;
COMPONENT g23_dayfrac_to_MTC
PORT (
clock : in STD_LOGIC;
enable : in STD_LOGIC;
Ndays : in STD_LOGIC_VECTOR(13 downto 0);
day_frac : in STD_LOGIC_VECTOR(39 downto 0);
-- Time corresponding to the fraction of the day.
Hours : out STD_LOGIC_VECTOR(4 downto 0);
Minutes : out STD_LOGIC_VECTOR(5 downto 0);
Seconds : out STD_LOGIC_VECTOR(5 downto 0)
);
END COMPONENT;
signal eod: STD_LOGIC;
signal date_reached: STD_LOGIC;
signal years_sig : STD_LOGIC_VECTOR(11 downto 0);
signal months_sig : STD_LOGIC_VECTOR(3 downto 0);
signal days_sig : STD_LOGIC_VECTOR(4 downto 0);
signal hours_sig : STD_LOGIC_VECTOR(4 downto 0);
signal minutes_sig : STD_LOGIC_VECTOR(5 downto 0);
signal seconds_sig : STD_LOGIC_VECTOR(5 downto 0);
signal Ndays : STD_LOGIC_VECTOR(13 downto 0);
signal Nsecs : STD_LOGIC_VECTOR(16 downto 0);
signal day_frac : UNSIGNED(39 downto 0);
signal day_end : STD_LOGIC;
signal circuit_start : STD_LOGIC;
BEGIN
Date_is_reached <= date_reached;
Num_days <= Ndays;
Num_secs <= Nsecs;
Year_out <= years_sig;
Month_out <= months_sig;
Day_out <= days_sig;
date_reached <= '1'
WHEN (Year = years_sig)
AND (Month = months_sig)
AND (Day = days_sig)
AND (Hour = hours_sig)
AND (Minute = minutes_sig)
AND (Second = seconds_sig)
ELSE '0';
circuit_start <= '1' WHEN
Nsecs = "00000000000000000" AND Ndays = "00000000000000"
ELSE '0';
YMD_counter : g23_YMD_counter
PORT MAP (
clock => clock,
reset => reset,
count_enable => enable AND eod AND (NOT date_reached),
load_enable => reset OR circuit_start,
Y_set => "011111010000",
M_set => "0001",
D_set => "00110",
years => years_sig,
months => months_sig,
days => days_sig
);
HMS_counter : g23_HMS_counter
PORT MAP (
clk => clock,
reset => reset,
count_enable => enable AND NOT date_reached AND clock,
load_enable => reset OR circuit_start,
h_set => (others => '0'),
m_set => (others => '0'),
s_set => (others => '0'),
hours => hours_sig,
minutes => minutes_sig,
seconds => seconds_sig,
end_of_day => eod
);
secs_counter : lpm_counter
GENERIC MAP (
lpm_width => 17,
lpm_direction => "up"
)
PORT MAP (
data => (others => '0'),
sload => reset OR eod,
clock => clock,
cnt_en => enable AND NOT date_reached,
q => Nsecs
);
days_counter : lpm_counter
GENERIC MAP (
lpm_width => 14,
lpm_direction => "up"
)
PORT MAP (
data => (others => '0'),
sload => reset,
clock => clock,
cnt_en => eod AND NOT date_reached,
q => Ndays
);
day_fraction_to_MTC : g23_dayfrac_to_MTC
PORT MAP (
clock => clock,
enable => date_reached,
Ndays => Ndays,
day_frac => STD_LOGIC_VECTOR(day_frac),
Hours => Mars_hours,
Minutes => Mars_minutes,
Seconds => Mars_seconds
);
seconds_to_days : g23_Seconds_to_Days
PORT MAP (
seconds => UNSIGNED(Nsecs),
day_fraction => day_frac
);
end cascading;
| mit |
kevinpt/opbasm | templates/ROM_form_S3_1K.vhdl | 1 | 5443 | ROM_form_S3_1K.vhd - Picoblaze Spartan-3 ROM template
Freely available from Opbasm (http://code.google.com/p/opbasm)
Copyright © 2014 Kevin Thibedeau
(kevin 'period' thibedeau 'at' gmail 'punto' com)
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
This template defines a Spartan-3 block RAM configured as a 1Kx18-bit single port ROM.
This is a VHDL template for the OPBASM assembler for the Picoblaze-3 (KCPSM3) processor.
It is functionally equivalent to the template included with the KCPSM3 assembler but updated
to remove the unneeded INIT_XXX attributes now that XST supports BRAM init from generics.
The assembler will read this template and fill in fields enclosed by curly braces. By default
OBPASM mimics KCPSM3.exe and searches for a template named "ROM_form.vhd". You can copy or
symlink this template to that file name or use the OBPASM -t switch to specify the template
directly.
This template is compatible with KCPSM3.exe except for the "{source file}" field which is only
used in a comment.
The next line establishes the beginning of the template:
{begin template}
-- ROM definition for KCPSM3 assembled from {source file}
-- Generated by OPBASM Assembler {timestamp}.
library ieee;
use ieee.std_logic_1164.all;
package {name}_pkg is
component {name} is
port(
Address : in std_logic_vector(9 downto 0);
Instruction : out std_logic_vector(17 downto 0);
Clk : in std_logic
);
end component;
end package;
library ieee;
use ieee.std_logic_1164.all;
library unisim;
use unisim.vcomponents.all;
entity {name} is
port(
Address : in std_logic_vector(9 downto 0);
Instruction : out std_logic_vector(17 downto 0);
Clk : in std_logic
);
end entity;
architecture structure of {name} is
begin
-- Xilinx block RAM used for ROM
rom_1024_x_18: RAMB16_S18
generic map (
INIT_00 => X"{INIT_00}",
INIT_01 => X"{INIT_01}",
INIT_02 => X"{INIT_02}",
INIT_03 => X"{INIT_03}",
INIT_04 => X"{INIT_04}",
INIT_05 => X"{INIT_05}",
INIT_06 => X"{INIT_06}",
INIT_07 => X"{INIT_07}",
INIT_08 => X"{INIT_08}",
INIT_09 => X"{INIT_09}",
INIT_0A => X"{INIT_0A}",
INIT_0B => X"{INIT_0B}",
INIT_0C => X"{INIT_0C}",
INIT_0D => X"{INIT_0D}",
INIT_0E => X"{INIT_0E}",
INIT_0F => X"{INIT_0F}",
INIT_10 => X"{INIT_10}",
INIT_11 => X"{INIT_11}",
INIT_12 => X"{INIT_12}",
INIT_13 => X"{INIT_13}",
INIT_14 => X"{INIT_14}",
INIT_15 => X"{INIT_15}",
INIT_16 => X"{INIT_16}",
INIT_17 => X"{INIT_17}",
INIT_18 => X"{INIT_18}",
INIT_19 => X"{INIT_19}",
INIT_1A => X"{INIT_1A}",
INIT_1B => X"{INIT_1B}",
INIT_1C => X"{INIT_1C}",
INIT_1D => X"{INIT_1D}",
INIT_1E => X"{INIT_1E}",
INIT_1F => X"{INIT_1F}",
INIT_20 => X"{INIT_20}",
INIT_21 => X"{INIT_21}",
INIT_22 => X"{INIT_22}",
INIT_23 => X"{INIT_23}",
INIT_24 => X"{INIT_24}",
INIT_25 => X"{INIT_25}",
INIT_26 => X"{INIT_26}",
INIT_27 => X"{INIT_27}",
INIT_28 => X"{INIT_28}",
INIT_29 => X"{INIT_29}",
INIT_2A => X"{INIT_2A}",
INIT_2B => X"{INIT_2B}",
INIT_2C => X"{INIT_2C}",
INIT_2D => X"{INIT_2D}",
INIT_2E => X"{INIT_2E}",
INIT_2F => X"{INIT_2F}",
INIT_30 => X"{INIT_30}",
INIT_31 => X"{INIT_31}",
INIT_32 => X"{INIT_32}",
INIT_33 => X"{INIT_33}",
INIT_34 => X"{INIT_34}",
INIT_35 => X"{INIT_35}",
INIT_36 => X"{INIT_36}",
INIT_37 => X"{INIT_37}",
INIT_38 => X"{INIT_38}",
INIT_39 => X"{INIT_39}",
INIT_3A => X"{INIT_3A}",
INIT_3B => X"{INIT_3B}",
INIT_3C => X"{INIT_3C}",
INIT_3D => X"{INIT_3D}",
INIT_3E => X"{INIT_3E}",
INIT_3F => X"{INIT_3F}",
INITP_00 => X"{INITP_00}",
INITP_01 => X"{INITP_01}",
INITP_02 => X"{INITP_02}",
INITP_03 => X"{INITP_03}",
INITP_04 => X"{INITP_04}",
INITP_05 => X"{INITP_05}",
INITP_06 => X"{INITP_06}",
INITP_07 => X"{INITP_07}"
)
port map(
DI => "0000000000000000",
DIP => "00",
EN => '1',
WE => '0',
SSR => '0',
CLK => clk,
ADDR => address,
DO => instruction(15 downto 0),
DOP => instruction(17 downto 16)
);
end architecture;
| mit |
cadesalaberry/digital-system-design | lab3/g23_basic_timer.vhd | 1 | 1210 | -- A Mars and Earth timer calibrated for a 50MHz clock.
--
-- entity name: g23_mars_timer
--
-- Copyright (C) 2014 cadesalaberry, grahamludwinski
--
-- Version 1.0
--
-- Author:
-- Charles-Antoine de Salaberry; [email protected],
-- Graham Ludwinski; [email protected]
--
-- Date: 13/03/2014
LIBRARY ieee;
USE ieee.STD_LOGIC_1164.all;
ENTITY g23_basic_timer IS
PORT (
clk : in STD_LOGIC;
enable : in STD_LOGIC;
reset : in STD_LOGIC;
EPULSE : out STD_LOGIC;
MPULSE : out STD_LOGIC
);
END g23_basic_timer;
ARCHITECTURE alpha OF g23_basic_timer IS
COMPONENT g23_generic_timer
GENERIC (max : natural := 0);
PORT (
clk : in STD_LOGIC;
enable : in STD_LOGIC;
reset : in STD_LOGIC;
pulse : out STD_LOGIC
);
END COMPONENT;
BEGIN
earth : g23_generic_timer
-- GENERIC MAP (max => 49999999)
-- GENERIC MAP (max => 1000)
GENERIC MAP (max => 100)
PORT MAP (
clk => clk,
enable => enable,
reset => reset,
pulse => EPULSE
);
mars : g23_generic_timer
-- GENERIC MAP (max => 51374562)
-- GENERIC MAP (max => 1027)
GENERIC MAP (max => 102)
PORT MAP (
clk => clk,
enable => enable,
reset => reset,
pulse => MPULSE
);
END alpha;
| mit |
plac-lab/TMIIaTest | Firmware/src/gig_eth/KC705/axi_lite_sm/tri_mode_ethernet_mac_0_axi_lite_sm.vhd | 3 | 36985 | --------------------------------------------------------------------------------
-- File : tri_mode_ethernet_mac_0_axi_lite_sm.vhd
-- Author : Xilinx Inc.
-- -----------------------------------------------------------------------------
-- (c) Copyright 2010 Xilinx, Inc. All rights reserved.
--
-- This file contains confidential and proprietary information
-- of Xilinx, Inc. and is protected under U.S. and
-- international copyright and other intellectual property
-- laws.
--
-- DISCLAIMER
-- This disclaimer is not a license and does not grant any
-- rights to the materials distributed herewith. Except as
-- otherwise provided in a valid license issued to you by
-- Xilinx, and to the maximum extent permitted by applicable
-- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
-- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
-- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
-- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
-- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
-- (2) Xilinx shall not be liable (whether in contract or tort,
-- including negligence, or under any other theory of
-- liability) for any loss or damage of any kind or nature
-- related to, arising under or in connection with these
-- materials, including for any direct, or any indirect,
-- special, incidental, or consequential loss or damage
-- (including loss of data, profits, goodwill, or any type of
-- loss or damage suffered as a result of any action brought
-- by a third party) even if such damage or loss was
-- reasonably foreseeable or Xilinx had been advised of the
-- possibility of the same.
--
-- CRITICAL APPLICATIONS
-- Xilinx products are not designed or intended to be fail-
-- safe, or for use in any application requiring fail-safe
-- performance, such as life-support or safety devices or
-- systems, Class III medical devices, nuclear facilities,
-- applications related to the deployment of airbags, or any
-- other applications that could lead to death, personal
-- injury, or severe property or environmental damage
-- (individually and collectively, "Critical
-- Applications"). Customer assumes the sole risk and
-- liability of any use of Xilinx products in Critical
-- Applications, subject only to applicable laws and
-- regulations governing limitations on product liability.
--
-- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
-- PART OF THIS FILE AT ALL TIMES.
-- -----------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Description: This module is reponsible for bringing up both the MAC and the
-- attached PHY (if any) to enable basic packet transfer in both directions.
-- It is intended to be directly usable on a xilinx demo platform to demonstrate
-- simple bring up and data transfer. The mac speed is set via inputs (which
-- can be connected to dip switches) and the PHY is configured to ONLY advertise
-- the specified speed. To maximise compatibility on boards only IEEE registers
-- are used and the PHY address can be set via a parameter.
--
--------------------------------------------------------------------------------
library unisim;
use unisim.vcomponents.all;
library ieee;
use ieee.std_logic_1164.all;
entity tri_mode_ethernet_mac_0_axi_lite_sm is
port (
s_axi_aclk : in std_logic;
s_axi_resetn : in std_logic;
mac_speed : in std_logic_vector(1 downto 0);
update_speed : in std_logic;
serial_command : in std_logic;
serial_response : out std_logic;
phy_loopback : in std_logic;
s_axi_awaddr : out std_logic_vector(11 downto 0) := (others => '0');
s_axi_awvalid : out std_logic := '0';
s_axi_awready : in std_logic;
s_axi_wdata : out std_logic_vector(31 downto 0) := (others => '0');
s_axi_wvalid : out std_logic := '0';
s_axi_wready : in std_logic;
s_axi_bresp : in std_logic_vector(1 downto 0);
s_axi_bvalid : in std_logic;
s_axi_bready : out std_logic;
s_axi_araddr : out std_logic_vector(11 downto 0) := (others => '0');
s_axi_arvalid : out std_logic := '0';
s_axi_arready : in std_logic;
s_axi_rdata : in std_logic_vector(31 downto 0);
s_axi_rresp : in std_logic_vector(1 downto 0);
s_axi_rvalid : in std_logic;
s_axi_rready : out std_logic := '0'
);
end tri_mode_ethernet_mac_0_axi_lite_sm;
architecture rtl of tri_mode_ethernet_mac_0_axi_lite_sm is
attribute DowngradeIPIdentifiedWarnings: string;
attribute DowngradeIPIdentifiedWarnings of RTL : architecture is "yes";
component tri_mode_ethernet_mac_0_sync_block
port (
clk : in std_logic;
data_in : in std_logic;
data_out : out std_logic
);
end component;
-- main state machine
-- Encoded main state machine states.
type state_typ is (STARTUP,
CHANGE_SPEED,
MDIO_RD,
MDIO_POLL_CHECK,
MDIO_1G,
MDIO_10_100,
MDIO_RGMII_RD,
MDIO_RGMII_RD_POLL,
MDIO_RGMII,
MDIO_DELAY_RD,
MDIO_DELAY_RD_POLL,
MDIO_DELAY,
MDIO_RESTART,
MDIO_LOOPBACK,
MDIO_STATS,
MDIO_STATS_POLL_CHECK,
RESET_MAC_RX,
RESET_MAC_TX,
CNFG_MDIO,
CNFG_FLOW,
CNFG_FILTER,
CNFG_LO_ADDR,
CNFG_HI_ADDR,
CHECK_SPEED);
-- MDIO State machine
type mdio_state_typ is (IDLE,
SET_DATA,
INIT,
POLL);
-- AXI State Machine
type axi_state_typ is (IDLE_A,
READ,
WRITE,
DONE);
-- Management configuration register address (0x500)
constant CONFIG_MANAGEMENT_ADD : std_logic_vector(16 downto 0) := "00000" & X"500";
-- Flow control configuration register address (0x40C0)
constant CONFIG_FLOW_CTRL_ADD : std_logic_vector(16 downto 0) := "00000" & X"40C";
-- Receiver configuration register address (0x4040)
constant RECEIVER_ADD : std_logic_vector(16 downto 0) := "00000" & X"404";
-- Transmitter configuration register address (0x4080)
constant TRANSMITTER_ADD : std_logic_vector(16 downto 0) :="00000" & X"408";
-- Speed configuration register address (0x410)
constant SPEED_CONFIG_ADD : std_logic_vector(16 downto 0) :="00000" & X"410";
-- Unicast Word 0 configuration register address (0x7000)
constant CONFIG_UNI0_CTRL_ADD : std_logic_vector(16 downto 0) :="00000" & X"700";
-- Unicast Word 1 configuration register address (0x7040)
constant CONFIG_UNI1_CTRL_ADD : std_logic_vector(16 downto 0) :="00000" & X"704";
-- Address Filter configuration register address (0x7080)
constant CONFIG_ADDR_CTRL_ADD : std_logic_vector(16 downto 0) := "00000" & X"708";
-- MDIO registers
constant MDIO_CONTROL : std_logic_vector(16 downto 0) := "00000" & X"504";
constant MDIO_TX_DATA : std_logic_vector(16 downto 0) := "00000" & X"508";
constant MDIO_RX_DATA : std_logic_vector(16 downto 0) := "00000" & X"50C";
constant MDIO_OP_RD : std_logic_vector(1 downto 0) := "10";
constant MDIO_OP_WR : std_logic_vector(1 downto 0) := "01";
-- PHY Registers
-- phy address is actually a 6 bit field but other bits are reserved so simpler to specify as 8 bit
constant PHY_ADDR : std_logic_vector(7 downto 0) := X"07";
constant PHY_CONTROL_REG : std_logic_vector(7 downto 0) := X"00";
constant PHY_STATUS_REG : std_logic_vector(7 downto 0) := X"01";
constant PHY_ABILITY_REG : std_logic_vector(7 downto 0) := X"04";
constant PHY_1000BASET_CONTROL_REG : std_logic_vector(7 downto 0) := X"09";
-- Non IEEE registers assume the PHY as provided on the Xilinx standard connectivity board i.e SP605
constant PHY_MODE_CTL_REG : std_logic_vector(7 downto 0) := X"14";
constant PHY_MODE_STS_REG : std_logic_vector(7 downto 0) := X"1b";
---------------------------------------------------
-- Signal declarations
signal axi_status : std_logic_vector(4 downto 0); -- used to keep track of axi transactions
signal mdio_ready : std_logic; -- captured to acknowledge the end of mdio transactions
signal axi_rd_data : std_logic_vector(31 downto 0);
signal axi_wr_data : std_logic_vector(31 downto 0);
signal mdio_wr_data : std_logic_vector(31 downto 0);
signal axi_state : state_typ; -- main state machine to configure example design
signal mdio_access_sm : mdio_state_typ; -- mdio state machine to handle mdio register config
signal axi_access_sm : axi_state_typ; -- axi state machine - handles the 5 channels
signal start_access : std_logic; -- used to kick the axi acees state machine
signal start_mdio : std_logic; -- used to kick the mdio state machine
signal drive_mdio : std_logic; -- selects between mdio fields and direct sm control
signal mdio_op : std_logic_vector(1 downto 0);
signal mdio_reg_addr : std_logic_vector(7 downto 0);
signal writenread : std_logic;
signal addr : std_logic_vector(16 downto 0);
signal speed : std_logic_vector(1 downto 0);
signal update_speed_sync : std_logic;
signal update_speed_reg : std_logic;
signal speedis10 : std_logic;
signal speedis100 : std_logic;
signal count_shift : std_logic_vector(20 downto 0) := (others => '1');
-- to avoid logic being stripped a serial input is included which enables an address/data and
-- control to be setup for a user config access..
signal serial_command_shift : std_logic_vector(36 downto 0);
signal load_data : std_logic;
signal capture_data : std_logic;
signal write_access : std_logic;
signal read_access : std_logic;
signal s_axi_reset : std_logic;
signal s_axi_awvalid_int : std_logic;
signal s_axi_wvalid_int : std_logic;
signal s_axi_bready_int : std_logic;
signal s_axi_arvalid_int : std_logic;
signal s_axi_rready_int : std_logic;
begin
s_axi_awvalid <= s_axi_awvalid_int;
s_axi_wvalid <= s_axi_wvalid_int;
s_axi_bready <= s_axi_bready_int;
s_axi_arvalid <= s_axi_arvalid_int;
s_axi_rready <= s_axi_rready_int;
s_axi_reset <= not s_axi_resetn;
speedis10 <= '1' when speed = "00" else '0';
speedis100 <= '1' when speed = "01" else '0';
update_speed_sync_inst :tri_mode_ethernet_mac_0_sync_block
port map (
clk => s_axi_aclk,
data_in => update_speed,
data_out => update_speed_sync
);
update_reg : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if s_axi_reset = '1' then
update_speed_reg <= '0';
else
update_speed_reg <= update_speed_sync;
end if;
end if;
end process update_reg;
-----------------------------------------------------------------------------
-- Management process. This process sets up the configuration by
-- turning off flow control, then checks gathered statistics at the
-- end of transmission
-----------------------------------------------------------------------------
gen_state : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if s_axi_reset = '1' then
axi_state <= STARTUP;
start_access <= '0';
start_mdio <= '0';
drive_mdio <= '0';
mdio_op <= (others => '0');
mdio_reg_addr <= (others => '0');
writenread <= '0';
addr <= (others => '0');
axi_wr_data <= (others => '0');
speed <= mac_speed;
-- main state machine is kicking off multi cycle accesses in each state so has to
-- stall while they take place
elsif axi_access_sm = IDLE_A and mdio_access_sm = IDLE and start_access = '0' and start_mdio = '0' then
case axi_state is
when STARTUP =>
-- this state will be ran after reset to wait for count_shift
if (count_shift(20) = '0') then
-- set up MDC frequency. Write 0x58 to Management configuration
-- register (Add=340). This will enable MDIO and set MDC to 2.5MHz
-- (set CLOCK_DIVIDE value to 24 dec. for 125MHz s_axi_aclk and
-- enable mdio)
speed <= mac_speed;
assert false
report "Setting MDC Frequency to 2.5MHz...." & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= CONFIG_MANAGEMENT_ADD;
axi_wr_data <= X"00000058";
axi_state <= CHANGE_SPEED;
end if;
when CHANGE_SPEED =>
-- program the MAC to the required speed
assert false
report "Programming MAC speed" & cr
severity note;
drive_mdio <= '0';
start_access <= '1';
writenread <= '1';
addr <= SPEED_CONFIG_ADD;
-- bits 31:30 are used
axi_wr_data <= speed & X"0000000" & "00";
axi_state <= MDIO_RD;
when MDIO_RD =>
-- read phy status - if response is all ones then do not perform any
-- further MDIO accesses
assert false
report "Checking for PHY" & cr
severity note;
drive_mdio <= '1'; -- switch axi transactions to use mdio values..
start_mdio <= '1';
writenread <= '0';
mdio_reg_addr <= PHY_STATUS_REG;
mdio_op <= MDIO_OP_RD;
axi_state <= MDIO_POLL_CHECK;
when MDIO_POLL_CHECK =>
if axi_rd_data(15 downto 0) = X"ffff" then
-- if status is all ones then no PHY exists at this address
-- (this is used by the tri_mode_ethernet_mac_0_demo_tb to avoid performing lots of phy accesses)
axi_state <= RESET_MAC_RX;
else
axi_state <= MDIO_1G;
end if;
when MDIO_1G =>
-- set 1G advertisement
assert false
report "Setting PHY 1G advertisement" & cr
severity note;
start_mdio <= '1';
mdio_reg_addr <= PHY_1000BASET_CONTROL_REG;
mdio_op <= MDIO_OP_WR;
-- 0x200 is 1G full duplex, 0x100 is 1G half duplex
-- only advertise the mode we want..
axi_wr_data <= X"0000" & "000000" & speed(1) & '0' & X"00";
axi_state <= MDIO_10_100;
when MDIO_10_100 =>
-- set 10/100 advertisement
assert false
report "Setting PHY 10/100M advertisement" & cr
severity note;
start_mdio <= '1';
mdio_reg_addr <= PHY_ABILITY_REG;
mdio_op <= MDIO_OP_WR;
-- bit8 : full 100M, bit7 : half 100M, bit6 : full 10M, bit5 : half 10M
-- only advertise the mode we want..
axi_wr_data <= X"00000" & "000" & speedis100 & '0' & speedis10 & "000000";
axi_state <= MDIO_RGMII_RD;
when MDIO_RGMII_RD =>
assert false
report "Checking current config" & cr
severity note;
start_mdio <= '1';
writenread <= '0';
mdio_reg_addr <= PHY_MODE_STS_REG;
mdio_op <= MDIO_OP_RD;
axi_state <= MDIO_RGMII_RD_POLL;
when MDIO_RGMII_RD_POLL =>
axi_state <= MDIO_RGMII;
-- prepare write_data for the next state
axi_wr_data <= X"0000" & axi_rd_data(15 downto 4) & X"b";
when MDIO_RGMII =>
-- set PHY to RGMII (if no jumper)
assert false
report "Setting PHY for RGMII - assumes Xilinx Standard Connectivity Board PHY" & cr
severity note;
start_mdio <= '1';
mdio_reg_addr <= PHY_MODE_STS_REG;
mdio_op <= MDIO_OP_WR;
axi_state <= MDIO_DELAY_RD;
-- may not need the following three states
when MDIO_DELAY_RD =>
assert false
report "Checking current config" & cr
severity note;
start_mdio <= '1';
writenread <= '0';
mdio_reg_addr <= PHY_MODE_CTL_REG;
mdio_op <= MDIO_OP_RD;
axi_state <= MDIO_DELAY_RD_POLL;
when MDIO_DELAY_RD_POLL =>
axi_state <= MDIO_DELAY;
-- prepare write_data for the next state
axi_wr_data <= X"0000" & axi_rd_data(15 downto 8) & '1' & axi_rd_data(6 downto 2) & '0' & axi_rd_data(0);
when MDIO_DELAY =>
-- add/remove the clock delay
assert false
report "Setting PHY RGMII delay - assumes Xilinx Standard Connectivity Board PHY" & cr
severity note;
start_mdio <= '1';
mdio_reg_addr <= PHY_MODE_CTL_REG;
mdio_op <= MDIO_OP_WR;
axi_state <= MDIO_RESTART;
when MDIO_RESTART =>
-- set autoneg and reset
-- if loopback is selected then do not set autonegotiate and program the required speed directly
-- otherwise set autonegotiate
assert false
report "Applying PHY software reset" & cr
severity note;
start_mdio <= '1';
mdio_reg_addr <= PHY_CONTROL_REG;
mdio_op <= MDIO_OP_WR;
if phy_loopback = '1' then
-- bit15: software reset, bit13 : speed LSB, bit 8 : full duplex, bit 6 : speed MSB
axi_wr_data <= X"0000" & "10" & speedis100 & X"0" & '1' & '0' & speed(1) & "000000";
axi_state <= MDIO_LOOPBACK;
else
-- bit15: software reset, bit12 : AN enable (set after power up)
axi_wr_data <= X"0000" & X"9" & X"000";
axi_state <= MDIO_STATS;
end if;
when MDIO_LOOPBACK =>
-- set phy loopback
assert false
report "Applying PHY loopback" & cr
severity note;
start_mdio <= '1';
mdio_reg_addr <= PHY_CONTROL_REG;
mdio_op <= MDIO_OP_WR;
-- bit14: loopback, bit13 : speed LSB, bit 8 : full duplex, bit 6 : speed MSB
axi_wr_data <= X"0000" & "01" & speedis100 & X"0" & '1' & '0' & speed(1) & "000000";
axi_state <= RESET_MAC_RX;
when MDIO_STATS =>
start_mdio <= '1';
assert false
report "Wait for Autonegotiation to complete" & cr
severity note;
mdio_reg_addr <= PHY_STATUS_REG;
mdio_op <= MDIO_OP_RD;
axi_state <= MDIO_STATS_POLL_CHECK;
when MDIO_STATS_POLL_CHECK =>
-- bit 5 is autoneg complete - assume required speed is selected
if axi_rd_data(5) = '1' then
axi_state <= RESET_MAC_RX;
else
axi_state <= MDIO_STATS;
end if;
-- once here the PHY is ACTIVE - NOTE only IEEE registers are used
when RESET_MAC_RX =>
assert false
report "Reseting MAC RX" & cr
severity note;
drive_mdio <= '0';
start_access <= '1';
writenread <= '1';
addr <= RECEIVER_ADD;
axi_wr_data <= X"90000000";
axi_state <= RESET_MAC_TX;
when RESET_MAC_TX =>
assert false
report "Reseting MAC TX" & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= TRANSMITTER_ADD;
axi_wr_data <= X"90000000";
axi_state <= CNFG_MDIO;
when CNFG_MDIO =>
-- set up MDC frequency. Write 0x58 to Management configuration
-- register (Add=340). This will enable MDIO and set MDC to 2.5MHz
-- (set CLOCK_DIVIDE value to 24 dec. for 125MHz s_axi_aclk and
-- enable mdio)
assert false
report "Setting MDC Frequency to 2.5MHZ...." & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= CONFIG_MANAGEMENT_ADD;
axi_wr_data <= X"00000058";
axi_state <= CNFG_FLOW;
when CNFG_FLOW =>
assert false
report "Disabling Flow control...." & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= CONFIG_FLOW_CTRL_ADD;
axi_wr_data <= (others => '0');
axi_state <= CNFG_LO_ADDR;
when CNFG_LO_ADDR =>
assert false
report "Configuring unicast address(low word)...." & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= CONFIG_UNI0_CTRL_ADD;
axi_wr_data <= X"040302DA";
axi_state <= CNFG_HI_ADDR;
when CNFG_HI_ADDR =>
assert false
report "Configuring unicast address(high word)...." & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= CONFIG_UNI1_CTRL_ADD;
axi_wr_data <= X"00000605";
axi_state <= CNFG_FILTER;
when CNFG_FILTER =>
assert false
report "Setting core to promiscuous mode...." & cr
severity note;
start_access <= '1';
writenread <= '1';
addr <= CONFIG_ADDR_CTRL_ADD;
axi_wr_data <= X"80000000";
axi_state <= CHECK_SPEED;
when CHECK_SPEED =>
if update_speed_reg = '1' then
axi_state <= CHANGE_SPEED;
speed <= mac_speed;
else
if capture_data = '1' then
axi_wr_data <= serial_command_shift(33 downto 2);
end if;
if write_access = '1' or read_access = '1' then
addr <= "00000" & serial_command_shift (13 downto 2);
start_access <= '1';
writenread <= write_access;
end if;
end if;
when others =>
axi_state <= STARTUP;
end case;
else
start_access <= '0';
start_mdio <= '0';
end if;
end if;
end process gen_state;
--------------------------------------------------
-- MDIO setup - split from main state machine to make more manageable
gen_mdio_state : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if s_axi_reset = '1' then
mdio_access_sm <= IDLE;
elsif axi_access_sm = IDLE_A or axi_access_sm = DONE then
case mdio_access_sm is
when IDLE =>
if start_mdio = '1' then
if mdio_op = MDIO_OP_WR then
mdio_access_sm <= SET_DATA;
mdio_wr_data <= axi_wr_data;
else
mdio_access_sm <= INIT;
mdio_wr_data <= PHY_ADDR & mdio_reg_addr & mdio_op & "001" & "00000000000";
end if;
end if;
when SET_DATA =>
mdio_access_sm <= INIT;
mdio_wr_data <= PHY_ADDR & mdio_reg_addr & mdio_op & "001" & "00000000000";
when INIT =>
mdio_access_sm <= POLL;
when POLL =>
if mdio_ready = '1' then
mdio_access_sm <= IDLE;
end if;
end case;
elsif mdio_access_sm = POLL and mdio_ready = '1' then
mdio_access_sm <= IDLE;
end if;
end if;
end process gen_mdio_state;
---------------------------------------------------------------------------------------------
-- processes to generate the axi transactions - only simple reads and write can be generated
gen_axi_state : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if s_axi_reset = '1' then
axi_access_sm <= IDLE_A;
else
case axi_access_sm is
when IDLE_A =>
if start_access = '1' or start_mdio = '1' or mdio_access_sm /= IDLE then
if mdio_access_sm = POLL then
axi_access_sm <= READ;
elsif (start_access = '1' and writenread = '1') or
(start_mdio = '1' or mdio_access_sm = SET_DATA or mdio_access_sm = INIT) then
axi_access_sm <= WRITE;
else
axi_access_sm <= READ;
end if;
end if;
when WRITE =>
-- wait in this state until axi_status signals the write is complete
if axi_status(4 downto 2) = "111" then
axi_access_sm <= DONE;
end if;
when READ =>
-- wait in this state until axi_status signals the read is complete
if axi_status(1 downto 0) = "11" then
axi_access_sm <= DONE;
end if;
when DONE =>
axi_access_sm <= IDLE_A;
end case;
end if;
end if;
end process gen_axi_state;
-- need a process per axi interface (i.e 5)
-- in each case the interface is driven accordingly and once acknowledged a sticky
-- status bit is set and the process waits until the access_sm moves on
-- READ ADDR
read_addr_p : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if axi_access_sm = READ then
if axi_status(0) = '0' then
if drive_mdio = '1' then
s_axi_araddr <= MDIO_RX_DATA(11 downto 0);
else
s_axi_araddr <= addr(11 downto 0);
end if;
s_axi_arvalid_int <= '1';
if s_axi_arready = '1' and s_axi_arvalid_int = '1' then
axi_status(0) <= '1';
s_axi_araddr <= (others => '0');
s_axi_arvalid_int <= '0';
end if;
end if;
else
axi_status(0) <= '0';
s_axi_araddr <= (others => '0');
s_axi_arvalid_int <= '0';
end if;
end if;
end process read_addr_p;
-- READ DATA/RESP
read_data_p : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if axi_access_sm = READ then
if axi_status(1) = '0' then
s_axi_rready_int <= '1';
if s_axi_rvalid = '1' and s_axi_rready_int = '1' then
axi_status(1) <= '1';
s_axi_rready_int <= '0';
axi_rd_data <= s_axi_rdata;
if drive_mdio = '1' and s_axi_rdata(16) = '1' then
mdio_ready <= '1';
end if;
end if;
end if;
else
s_axi_rready_int <= '0';
axi_status(1) <= '0';
if axi_access_sm = IDLE_A and (start_access = '1' or start_mdio = '1') then
mdio_ready <= '0';
axi_rd_data <= (others => '0');
end if;
end if;
end if;
end process read_data_p;
-- WRITE ADDR
write_addr_p : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if axi_access_sm = WRITE then
if axi_status(2) = '0' then
if drive_mdio = '1' then
if mdio_access_sm = SET_DATA then
s_axi_awaddr <= MDIO_TX_DATA(11 downto 0);
else
s_axi_awaddr <= MDIO_CONTROL(11 downto 0);
end if;
else
s_axi_awaddr <= addr(11 downto 0);
end if;
s_axi_awvalid_int <= '1';
if s_axi_awready = '1' and s_axi_awvalid_int = '1' then
axi_status(2) <= '1';
s_axi_awaddr <= (others => '0');
s_axi_awvalid_int <= '0';
end if;
end if;
else
s_axi_awaddr <= (others => '0');
s_axi_awvalid_int <= '0';
axi_status(2) <= '0';
end if;
end if;
end process write_addr_p;
-- WRITE DATA
write_data_p : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if axi_access_sm = WRITE then
if axi_status(3) = '0' then
if drive_mdio = '1' then
s_axi_wdata <= mdio_wr_data;
else
s_axi_wdata <= axi_wr_data;
end if;
s_axi_wvalid_int <= '1';
if s_axi_wready = '1' and s_axi_wvalid_int = '1' then
axi_status(3) <= '1';
s_axi_wvalid_int <= '0';
end if;
end if;
else
s_axi_wdata <= (others => '0');
s_axi_wvalid_int <= '0';
axi_status(3) <= '0';
end if;
end if;
end process write_data_p;
-- WRITE RESP
write_resp_p : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if axi_access_sm = WRITE then
if axi_status(4) = '0' then
s_axi_bready_int <= '1';
if s_axi_bvalid = '1' and s_axi_bready_int = '1' then
axi_status(4) <= '1';
s_axi_bready_int <= '0';
end if;
end if;
else
s_axi_bready_int <= '0';
axi_status(4) <= '0';
end if;
end if;
end process write_resp_p;
shift_command : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
if load_data = '1' then
serial_command_shift <= serial_command_shift(35 downto 33) & axi_rd_data & serial_command_shift(0) & serial_command;
else
serial_command_shift <= serial_command_shift(35 downto 0) & serial_command;
end if;
end if;
end process shift_command;
serial_response <= serial_command_shift(34) when axi_state = CHECK_SPEED else '1';
-- the serial command is expected to have a start and stop bit - to avoid a counter -
-- and a two bit code field in the uppper two bits.
-- these decode as follows:
-- 00 - read address
-- 01 - write address
-- 10 - write data
-- 11 - read data - slightly more involved - when detected the read data is registered into the shift and passed out
-- 11 is used for read data as if the input is tied high the output will simply reflect whatever was
-- captured but will not result in any activity
-- it is expected that the write data is setup BEFORE the write address
shift_decode : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
load_data <= '0';
capture_data <= '0';
write_access <= '0';
read_access <= '0';
if serial_command_shift(36) = '0' and serial_command_shift(35) = '1' and serial_command_shift(0) = '1' then
if serial_command_shift(34) = '1' and serial_command_shift(33) = '1' then
load_data <= '1';
elsif serial_command_shift(34) = '1' and serial_command_shift(33) = '0' then
capture_data <= '1';
elsif serial_command_shift(34) = '0' and serial_command_shift(33) = '1' then
write_access <= '1';
else
read_access <= '1';
end if;
end if;
end if;
end process shift_decode;
-- don't reset this - it will always be updated before it is used..
-- it does need an init value (all ones)
-- Create fully synchronous reset in the s_axi clock domain.
gen_count : process (s_axi_aclk)
begin
if s_axi_aclk'event and s_axi_aclk = '1' then
count_shift <= count_shift(19 downto 0) & s_axi_reset;
end if;
end process gen_count;
end rtl;
| mit |
cadesalaberry/digital-system-design | lab5/g23_basic_timer.vhd | 2 | 1210 | -- A Mars and Earth timer calibrated for a 50MHz clock.
--
-- entity name: g23_mars_timer
--
-- Copyright (C) 2014 cadesalaberry, grahamludwinski
--
-- Version 1.0
--
-- Author:
-- Charles-Antoine de Salaberry; [email protected],
-- Graham Ludwinski; [email protected]
--
-- Date: 13/03/2014
LIBRARY ieee;
USE ieee.STD_LOGIC_1164.all;
ENTITY g23_basic_timer IS
PORT (
clk : in STD_LOGIC;
enable : in STD_LOGIC;
reset : in STD_LOGIC;
EPULSE : out STD_LOGIC;
MPULSE : out STD_LOGIC
);
END g23_basic_timer;
ARCHITECTURE alpha OF g23_basic_timer IS
COMPONENT g23_generic_timer
GENERIC (max : natural := 0);
PORT (
clk : in STD_LOGIC;
enable : in STD_LOGIC;
reset : in STD_LOGIC;
pulse : out STD_LOGIC
);
END COMPONENT;
BEGIN
earth : g23_generic_timer
GENERIC MAP (max => 49999999)
-- GENERIC MAP (max => 1000)
-- GENERIC MAP (max => 100)
PORT MAP (
clk => clk,
enable => enable,
reset => reset,
pulse => EPULSE
);
mars : g23_generic_timer
GENERIC MAP (max => 51374562)
-- GENERIC MAP (max => 1027)
-- GENERIC MAP (max => 102)
PORT MAP (
clk => clk,
enable => enable,
reset => reset,
pulse => MPULSE
);
END alpha;
| mit |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.