Archived
1
0

fix coeff calculation

This commit is contained in:
2024-03-10 21:50:07 +01:00
parent cf05b0a7f9
commit e187e34017
8 changed files with 37 additions and 16 deletions

View File

@@ -1,4 +1,20 @@
ARCHITECTURE studentVersion OF interpolatorCalculatePolynom IS
subtype sample_type is signed(sampleIn'range);
type samples_type is array (1 to 4) of sample_type;
signal samples: samples_type;
BEGIN
process(clock, reset) begin
if reset = '1' then
samples <= (others => (others => '0'));
elsif rising_edge(clock) then
end if;
end process;
sampleOut <= (others => '0');
END ARCHITECTURE studentVersion;