OpenCores
URL https://opencores.org/ocsvn/dmt_tx/dmt_tx/trunk

Subversion Repositories dmt_tx

[/] [dmt_tx/] [tags/] [import/] [rtl/] [vhdl/] [dmt_mod.vhd] - Blame information for rev 23

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 dannori
-------------------------------------------------------------------------------
2
-- Title      : DMT modulator
3
-- Project    : 
4
-------------------------------------------------------------------------------
5
-- File       : dmt_mod.vhd
6
-- Author     : 
7
-- Company    : 
8
-- Created    : 2004-05-17
9
-- Last update: 2004-05-17
10
-- Platform   : 
11
-------------------------------------------------------------------------------
12
-- Description: 
13
-------------------------------------------------------------------------------
14
-- Copyright (c) 2004 
15
-------------------------------------------------------------------------------
16
-- Revisions  :
17
-- Date        Version  Author  Description
18
-- 2004-05-17  1.0      guenter Created
19
-------------------------------------------------------------------------------
20
 
21
library ieee;
22
use ieee.std_logic_1164.all;
23
 
24
entity dmt_mod is
25
 
26
  port (
27
    clk_i        : in  std_logic;
28
    rst_i        : in  std_logic;
29
    data_en_i    : in  std_logic;       -- enables the data processing mode
30
    data_i       : in  std_logic_vector(14 downto 0);  -- input data to the modulator core
31
    conf_we_i    : in  std_logic;       -- enables the configuration mode
32
    bin_addr_i   : in  std_logic_vector(7 downto 0);  -- addresses the bin configuration
33
    const_size_i : in  std_logic_vector(3 downto 0);  -- constellation size for the addressed bin
34
    gain_i       : in  std_logic_vector(11 downto 0);  -- gain value for the addressed bin
35
    data_o       : out std_logic_vector(15 downto 0));  -- output data from the modulator core
36
 
37
end dmt_mod;
38
 
39
architecture arch of dmt_mod is
40
 
41
begin  -- arch
42
 
43
 
44
 
45
end arch;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.