Line 1... |
Line 1... |
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
--
|
--
|
-- GCpad controller core
|
-- GCpad controller core
|
--
|
--
|
-- $Id: gcpad_sampler.vhd,v 1.2 2004-10-08 21:35:08 arniml Exp $
|
-- $Id: gcpad_sampler.vhd,v 1.3 2004-10-09 00:33:12 arniml Exp $
|
--
|
--
|
-- Copyright (c) 2004, Arnim Laeuger (arniml@opencores.org)
|
-- Copyright (c) 2004, Arnim Laeuger (arniml@opencores.org)
|
--
|
--
|
-- All rights reserved
|
-- All rights reserved
|
--
|
--
|
Line 54... |
Line 54... |
generic (
|
generic (
|
reset_level_g : integer := 0;
|
reset_level_g : integer := 0;
|
clocks_per_1us_g : integer := 2
|
clocks_per_1us_g : integer := 2
|
);
|
);
|
port (
|
port (
|
|
-- System Interface -------------------------------------------------------
|
clk_i : in std_logic;
|
clk_i : in std_logic;
|
reset_i : in std_logic;
|
reset_i : in std_logic;
|
|
-- Control Interface ------------------------------------------------------
|
wrap_sample_i : in boolean;
|
wrap_sample_i : in boolean;
|
sync_sample_i : in boolean;
|
sync_sample_i : in boolean;
|
sample_underflow_o : out boolean;
|
sample_underflow_o : out boolean;
|
|
-- Pad Interface ----------------------------------------------------------
|
pad_data_i : in std_logic;
|
pad_data_i : in std_logic;
|
pad_data_o : out std_logic;
|
pad_data_o : out std_logic;
|
sample_o : out std_logic
|
sample_o : out std_logic
|
);
|
);
|
|
|
Line 158... |
Line 161... |
|
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
-- File History:
|
-- File History:
|
--
|
--
|
-- $Log: not supported by cvs2svn $
|
-- $Log: not supported by cvs2svn $
|
|
-- Revision 1.2 2004/10/08 21:35:08 arniml
|
|
-- comments
|
|
--
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
|
|
No newline at end of file
|
No newline at end of file
|