From 6cd1461d5322989daa114720550c485c81d5b0e3 Mon Sep 17 00:00:00 2001 From: Andreas Neiser Date: Wed, 14 Jan 2015 11:26:34 +0100 Subject: [PATCH] ADC: convert explicitly to std_logic_vector --- ADC/source/adc_ad9219.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ADC/source/adc_ad9219.vhd b/ADC/source/adc_ad9219.vhd index 9fb3678..3a1d16b 100644 --- a/ADC/source/adc_ad9219.vhd +++ b/ADC/source/adc_ad9219.vhd @@ -248,7 +248,7 @@ gen_chips : for i in 0 to NUM_DEVICES-1 generate proc_debug : process begin wait until rising_edge(CLK); - DEBUG(i*32+31 downto i*32+4) <= counter(i); + DEBUG(i*32+31 downto i*32+4) <= std_logic_vector(counter(i)); case state_q(i) is when S1 => DEBUG(i*32+3 downto i*32+0) <= x"1"; when S2 => DEBUG(i*32+3 downto i*32+0) <= x"2"; -- 2.43.0