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

Subversion Repositories simple_fm_receiver

[/] [simple_fm_receiver/] [trunk/] [bench/] [bench.vhdl] - Blame information for rev 46

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 46 arif_endro
-- ------------------------------------------------------------------------
2 40 arif_endro
-- Copyright (C) 2004 Arif Endro Nugroho
3 46 arif_endro
-- All rights reserved.
4 13 arif_endro
-- 
5 46 arif_endro
-- Redistribution and use in source and binary forms, with or without
6
-- modification, are permitted provided that the following conditions
7
-- are met:
8 13 arif_endro
-- 
9 46 arif_endro
-- 1. Redistributions of source code must retain the above copyright
10
--    notice, this list of conditions and the following disclaimer.
11
-- 2. Redistributions in binary form must reproduce the above copyright
12
--    notice, this list of conditions and the following disclaimer in the
13
--    documentation and/or other materials provided with the distribution.
14 13 arif_endro
-- 
15 46 arif_endro
-- THIS SOFTWARE IS PROVIDED BY ARIF ENDRO NUGROHO "AS IS" AND ANY EXPRESS
16
-- OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
-- DISCLAIMED. IN NO EVENT SHALL ARIF ENDRO NUGROHO BE LIABLE FOR ANY
19
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21
-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22
-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23
-- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
24
-- ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25
-- POSSIBILITY OF SUCH DAMAGE.
26 13 arif_endro
-- 
27 46 arif_endro
-- End Of License.
28
-- ------------------------------------------------------------------------
29 2 arif_endro
 
30
library IEEE;
31
use IEEE.STD_LOGIC_1164.ALL;
32
 
33
entity bench is
34
port (
35
    clock               : in  bit;
36 5 arif_endro
    reset               : in  bit;
37
    output_fm           : out bit_vector (11 downto 0);
38
    output_fmTri        : out bit_vector (11 downto 0)
39 2 arif_endro
    );
40
end bench;
41
 
42
architecture structural of bench is
43
  component fm
44
  port (
45
    CLK              : in  bit;
46
    RESET            : in  bit;
47
    FMIN             : in  bit_vector (07 downto 0);
48
    DMOUT            : out bit_vector (11 downto 0)
49
    );
50
  end component;
51
 
52
  component input_fm
53
  port (
54
    clock            : in  bit;
55
    clear            : in  bit;
56
    test_signal_fm   : out bit_vector (07 downto 0);
57
    test_signal_fmTri: out bit_vector (07 downto 0)
58
    );
59
  end component;
60
 
61
  signal test_signal_fm : bit_vector (07 downto 0);
62
  signal test_signal_fmTri : bit_vector (07 downto 0);
63
 
64
  begin
65
 
66
 myinput : input_fm
67
   port map (
68
    clock            => clock,
69
    clear            => reset,
70
    test_signal_fm   => test_signal_fm,
71
    test_signal_fmTri=> test_signal_fmTri
72
    );
73 5 arif_endro
 
74 2 arif_endro
  myfm : fm
75
   port map (
76
    CLK                  => clock,
77
    RESET                => reset,
78
    FMIN                 => test_signal_fm,
79
    DMOUT (11 downto 0)  => output_fm
80
    );
81 5 arif_endro
 
82
  myfmTri : fm
83
   port map (
84
    CLK                  => clock,
85
    RESET                => reset,
86
    FMIN                 => test_signal_fmTri,
87
    DMOUT (11 downto 0)  => output_fmTri
88
    );
89
 
90
 
91 2 arif_endro
end structural;

powered by: WebSVN 2.1.0

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