Altera_Forum
Honored Contributor
13 years agoLaboratory Exercise 12
Hello,
I need a help to solve the first part of exercise 12, Basic Digital Signal Processing. I'm using the libraries provided "lab12_design_files." Insert the following code in the correct area. --YOUR CODE GOES HERE process(read_ready, write_ready, read_s, write_s) is -- Declaration(s) begin if (read_ready='1' and read_s='0') then read_s<='1'; if(write_ready='1' and write_s='0') then write_s<='1'; writedata_left <= readdata_left; writedata_right <= readdata_right; end if; end if; read_s<='0'; write_s<='0'; end process; But the program does not work, does not give errors. But no more sound from the microphone to the speakers. Thanks, Filipe Nunes