-- -- Program -- D:\EXEMPLAR\BIN\PC\FPGA.EXE D:\EXEMPLAR\TUTORIAL\REG2.VHD D:\EXEMPLAR\TUTORI -- AL\HARDWARE\REG2.VHD -COMMAND_FILE=D:\EXEMPLAR\DEMO\TMP18.$$$ -- Version V2.1.4 -- Definition of REG2 -- -- VHDL Structural Description, created by -- Exemplar Logic's CORE -- Thu Mar 16 14:22:59 1995 -- -- -- library ieee ; use ieee.std_logic_1164.all ; LIBRARY exemplar; USE exemplar.Cypress_pASIC.ALL; entity REG2 is port ( D, C : in std_logic ; Z : out std_logic) ; end REG2 ; architecture exemplar of REG2 is begin vh_3 : DFF port map ( CLK=>C, D=>D, Q=>Z); end exemplar ;