Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
This is the code I'm evaluating for syntaxSyntax for range of Hex values in the when line of a CASE statement.
e.g. When = X"03" to X"F9" => ....
Thanks
Code VHDL - [expand] 1 2 3 case sel is when X"03" | X"04" | X"05" | X"06" | X"07" | X"08" | X"09" | X"0A" ......etc when others .....
Code VHDL - [expand] 1 2 3 if sel >= X"03" and sel <= X"F9" then .... end if;
case to_integer(sel) is
when 16#03# to 16#f9# =>
when others =>
end case;