Altera_Forum
Honored Contributor
9 years agoquestion about wait command in VHDL
Anybody interested in answering a stupid question from a newbee?
Ashenden writes in his book "the Designers guide to VHDL"(second edition page 118) the syntax of the VHDL wait statement is wait [on signal_name{,...}] [until boolean_expression] [for time_expression]; any combination of 3 obtions is allowed. HOWEVER syntax quartus2 version 13 NOT accepts storage: process is . . . wait on d0; end process storage; and DOES accept: storage: process(d0) is . . . end process storage; hence not using the wait statement, but the equivalent semantic extremely stupid facing icon