m***@gmail.com
2013-01-31 17:29:30 UTC
Could someone explain what these are supposed to do?
I don't believe its taking effect, I am hoping it capitalizes state values
Example:
type state is (idle, transfer, done);
...
case state is
when idle =>"
TO
type state is (IDLE, TRANSFER, DONE);
...
case state is
when IDLE
AND
"constant test : std_logic_vector(9 downto 0) := (others => '0');"
"constant TEST : std_logic_vector(9 downto 0) := (others => '0');"
this is what I'm looking for
I don't believe its taking effect, I am hoping it capitalizes state values
Example:
type state is (idle, transfer, done);
...
case state is
when idle =>"
TO
type state is (IDLE, TRANSFER, DONE);
...
case state is
when IDLE
AND
"constant test : std_logic_vector(9 downto 0) := (others => '0');"
"constant TEST : std_logic_vector(9 downto 0) := (others => '0');"
this is what I'm looking for