blob: ec1846231551af61335a4a9a012fce64d5834136 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity de1_adc is
port ( CLOCK_50 : in std_ulogic;
SW : in std_ulogic_vector(9 downto 0);
KEY0 : in std_ulogic;
DAC_MODE : out std_ulogic; --1=dual port, 0=interleaved
DAC_WRT_A : out std_ulogic;
DAC_WRT_B : out std_ulogic;
DAC_CLK_A : out std_ulogic; -- PLL_OUT_DAC0 in User Manual
DAC_CLK_B : out std_ulogic; -- PLL_OUT_DAC1 in User Manual
DAC_DA : out std_ulogic_vector(13 downto 0);
DAC_DB : out std_ulogic_vector(13 downto 0);
ADC_CLK_A : out std_ulogic;
ADC_CLK_B : out std_ulogic;
POWER_ON : out std_ulogic;
ADC_OEB_A : out std_ulogic;
ADC_OEB_B : out std_ulogic;
ADC_DA : in std_ulogic_vector(13 downto 0);
ADC_DB : in std_ulogic_vector(13 downto 0);
ADC_OTR_A : in std_ulogic;
ADC_OTR_B : in std_ulogic;
LEDR : out std_ulogic_vector(9 downto 0)); -- red LEDs
end entity;
architecture rtl of de1_adc is
signal clk,rst_n : std_ulogic;
signal dac_a_dat, dac_b_dat, adc_a_dat, adc_b_dat : std_ulogic_vector(13 downto 0);
begin
clk <= CLOCK_50;
rst_n <= KEY0;
LEDR <= "00000000" & ADC_OTR_A & ADC_OTR_B when rising_edge(clk);
DAC_MODE <= '1'; --dual port
DAC_CLK_A <= clk;
DAC_CLK_B <= clk;
DAC_WRT_A <= clk;
DAC_WRT_B <= clk;
dac_a_dat <= (others => '0') when rst_n = '0' else adc_a_dat when falling_edge(clk);
dac_b_dat <= (others => '0') when rst_n = '0' else adc_b_dat when falling_edge(clk);
DAC_DA <= dac_a_dat;
DAC_DB <= dac_b_dat;
-- ADC Section
ADC_CLK_A <= clk;
ADC_CLK_B <= clk;
ADC_OEB_A <= '0';
ADC_OEB_B <= '0';
POWER_ON <= '1';
adc_a_dat <= (others => '0') when rst_n = '0' else ADC_DA when rising_edge(clk);
adc_b_dat <= (others => '0') when rst_n = '0' else ADC_DB when rising_edge(clk);
end architecture rtl;
|