Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is the meaning of this VHDL line?

Status
Not open for further replies.

testing test

Member level 3
Joined
Mar 3, 2010
Messages
65
Helped
5
Reputation
10
Reaction score
3
Trophy points
1,288
Activity points
1,656
Hi,

What is the meaning of this VHDL line?

ADC_x <= (ADC_r(RESOLUTION-2 downto 0) & sdto) when (phase = SCLK_RISING_EDGE) and (bit_cnt < RESOLUTION) else ADC_r;

Thank you.
 

Suppose for example that RESOLUTION is 8 and sdto is 1

ADC_r(RESOLUTION-2 downto 0) & sdto) translates to ADC_r(8-2 downto 0) & '1') which is the 7 bit ADC_R (for example "1010100" concatenated with '1' , result is "10101001"

ADC_x <= (ADC_r(RESOLUTION-2 downto 0) & sdto) when (phase = SCLK_RISING_EDGE) and (bit_cnt < RESOLUTION) else ADC_r;

so ADC_x will be assigned the value of ADC_R concatenated with stdo when (phase = SCLK_RISING_EDGE) and (bit_cnt < RESOLUTION) is true or else it will be assigned the value of ADC_r.

Alex
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top