From aef2f075702736ad53a09c39d36ca9e126154f76 Mon Sep 17 00:00:00 2001 From: Andreas Neiser Date: Fri, 17 Apr 2015 17:32:29 +0200 Subject: [PATCH] Set one bit to prevent becoming end marker --- ADC/source/adc_processor_cfd_ch.vhd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ADC/source/adc_processor_cfd_ch.vhd b/ADC/source/adc_processor_cfd_ch.vhd index 5d234a8..82980b0 100644 --- a/ADC/source/adc_processor_cfd_ch.vhd +++ b/ADC/source/adc_processor_cfd_ch.vhd @@ -260,7 +260,7 @@ begin elsif CONF.DebugMode /= 0 and RAM_BSY_IN = '1' then -- at least one word is always dumped into the RAM -- don't move the ram pointer yet, it's already at next position - RAM_DATA(31 downto 24) <= x"00"; + RAM_DATA(31 downto 24) <= x"01"; RAM_DATA(23 downto 20) <= std_logic_vector(to_unsigned(DEVICE, 4)); RAM_DATA(19 downto 16) <= std_logic_vector(to_unsigned(CHANNEL, 4)); RAM_DATA(15 downto 0) <= debug_mux; @@ -276,7 +276,7 @@ begin state <= LOCKED; else debug_counter := debug_counter - 1; - RAM_DATA(31 downto 24) <= x"00"; + RAM_DATA(31 downto 24) <= x"01"; RAM_DATA(23 downto 20) <= std_logic_vector(to_unsigned(DEVICE, 4)); RAM_DATA(19 downto 16) <= std_logic_vector(to_unsigned(CHANNEL, 4)); RAM_DATA(15 downto 0) <= debug_mux; -- 2.43.0