From 55e73b2543b2fd0360529438d45d7dd1c607cdb7 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Tue, 26 Apr 2016 16:43:59 +0200 Subject: [PATCH] Fix fifo recognition problem. --- ADC/source/adc_processor.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ADC/source/adc_processor.vhd b/ADC/source/adc_processor.vhd index 1ecb722..00f1665 100644 --- a/ADC/source/adc_processor.vhd +++ b/ADC/source/adc_processor.vhd @@ -68,7 +68,7 @@ signal ram_debug_read : std_logic_vector(CHANNELS-1 downto 0) := (others => ' signal ram_clear : std_logic_vector(CHANNELS-1 downto 0) := (others => '0'); signal ram_reset : std_logic := '0'; signal ram_data_in : unsigned_array_18(0 to CHANNELS-1) := (others => (others => '0')); -signal ram_data_out : unsigned_array_18(0 to CHANNELS-1) := (others => (others => '0')); +signal ram_data_out : unsigned_array_18(0 to CHANNELS-1); -- := (others => (others => '0')); signal reg_ram_data_out : unsigned_array_18(0 to CHANNELS-1) := (others => (others => '0')); signal reg_buffer_addr : std_logic_vector(4 downto 0); signal reg_buffer_read : std_logic; -- 2.43.0