diff options
| author | lonkaars <loek@pipeframe.xyz> | 2023-02-06 18:29:25 +0100 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2023-02-06 18:29:25 +0100 |
| commit | d5df6da289ae10bb446d1ff63250484a79937aed (patch) | |
| tree | 11356937983df011e5c6488cdad4acb26077ffe2 /src/SampleOut.vhd | |
| parent | dd8ff1958ee83dd9b98727f6a40153534b872828 (diff) | |
rick roll done
Diffstat (limited to 'src/SampleOut.vhd')
| -rw-r--r-- | src/SampleOut.vhd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SampleOut.vhd b/src/SampleOut.vhd index 53e3f1a..63b6159 100644 --- a/src/SampleOut.vhd +++ b/src/SampleOut.vhd @@ -6,14 +6,14 @@ use IEEE.NUMERIC_STD.ALL; entity SampleOut is generic( INPUT_DEPTH: integer := 256; - INPUT_SAMPLE_SIZE: integer := 36984; + INPUT_SAMPLE_SIZE: integer := 200000; INPUT_AUDIO_HZ: integer := 44100; INPUT_CLK_HZ: integer := 100000000 ); Port ( reset, clk : in STD_LOGIC; inCOEData : in STD_LOGIC_VECTOR(7 downto 0); outCOEData : out STD_LOGIC_VECTOR(7 downto 0); - outCOEAddress : out STD_LOGIC_VECTOR(15 downto 0) + outCOEAddress : out STD_LOGIC_VECTOR(17 downto 0) ); end SampleOut; |