entity ch_03_04 is

end entity ch_03_04;


----------------------------------------------------------------


architecture test of ch_03_04 is

  type opcode_type is (opcode_1, opcode_2, halt_opcode);
  signal opcode : opcode_type := opcode_1;

  signal halt_indicator : boolean := false;

begin

  process_3_1_d : process (opcode) is

    variable PC : integer := 0;
    constant effective_address : integer := 1;
    variable executing : boolean := true;

  begin

    -- code from book:

    if opcode = halt_opcode then
      PC := effective_address;
      executing := false;
      halt_indicator <= true;
    end if;

    -- end of code from book

  end process process_3_1_d;

  stimulus : process is
  begin
    opcode <= opcode_2 after 100 ns, halt_opcode after 200 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 />&nbsp;</div>