entity ch_03_01 is end entity ch_03_01; ---------------------------------------------------------------- architecture test of ch_03_01 is signal en : bit := '0'; signal data_in : integer := 0; begin process_3_1_a : process (en, data_in) is variable stored_value : integer := 0; begin -- code from book: if en = '1' then stored_value := data_in; end if; -- end of code from book end process process_3_1_a; stimulus : process is begin en <= '1' after 10 ns, '0' after 20 ns; data_in <= 1 after 5 ns, 2 after 15 ns, 3 after 25 ns; wait; end process stimulus; end architecture test; <div align="center"><br /><script type="text/javascript"><!-- google_ad_client = "pub-7293844627074885"; //468x60, Created at 07. 11. 25 google_ad_slot = "8619794253"; google_ad_width = 468; google_ad_height = 60; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><br /> </div>