VHDL with select when error

前端 未结 1 1932
天命终不由人
天命终不由人 2021-01-29 12:40

VHDL is the worst designed language with the worst syntax that I have ever encountered. Why does this with-select-when code give me an error?:

  library ieee;
us         


        
1条回答
  •  孤独总比滥情好
    2021-01-29 13:04

    You have several syntax errors: The assignment should look like

    with mux48sv select
       mux48ov <= mux48dv0 when "0000",
                  mux48dv1 when "0001",
                  ...
                  mux48dv3 when others;
    

    0 讨论(0)
提交回复
热议问题