2024-02-23 13:01:05 +00:00
|
|
|
ARCHITECTURE studentVersion OF interpolatorCalculatePolynom IS
|
2024-03-10 20:50:07 +00:00
|
|
|
|
|
|
|
subtype sample_type is signed(sampleIn'range);
|
|
|
|
type samples_type is array (1 to 4) of sample_type;
|
|
|
|
signal samples: samples_type;
|
|
|
|
|
2024-02-23 13:01:05 +00:00
|
|
|
BEGIN
|
2024-03-10 20:50:07 +00:00
|
|
|
|
|
|
|
process(clock, reset) begin
|
|
|
|
if reset = '1' then
|
|
|
|
samples <= (others => (others => '0'));
|
|
|
|
elsif rising_edge(clock) then
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end if;
|
|
|
|
end process;
|
|
|
|
|
2024-02-23 13:01:05 +00:00
|
|
|
sampleOut <= (others => '0');
|
|
|
|
END ARCHITECTURE studentVersion;
|