-------------------------------------------------------------------------------
-- Synthesizable examples cover a large set of VHDL synthesizable constructs --
-- All examples have been synthesized with the Exemplar logic Core           --
-- Copyright 1995, Zainalabedin Navabi navabi@ece.ut.ac.ir navabi@ece.neu.edu--
-------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
--
LIBRARY exemplar;
USE exemplar.exemplar_1164.ALL;
USE exemplar.exemplar.ALL;


ENTITY internal_flag IS
  PORT (d, c, a : IN std_logic; z : OUT std_logic);
END;

ARCHITECTURE behavioral OF internal_flag IS
BEGIN
  PROCESS (d, c, a)
    VARIABLE flag : std_logic;
  BEGIN
    IF flag = '1' THEN z <= a AND d;
    ELSE z <= '0'; 
    END IF;
    IF (c'EVENT AND c = '1') THEN
      flag := d;
    END IF;
  END PROCESS;
END behavioral;



<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>