Forum Discussion
Altera_Forum
Honored Contributor
17 years agoWhy can't I do simuation?
When I tried to do simulation, a window popped out with the error: "No simulation input file assignment specified on Simulator page of the Settings Dialog box". I checked the '"Assignments...
Altera_Forum
Honored Contributor
14 years agoI want to execute D_FF like this into DE1 kit, but I do not know to use clock pin, reset for KIT. Please, help me
library ieee; use ieee.std_logic_1164.all; entity d_ff is port( clock: in std_logic; d: in std_logic; q: out std_logic ); end d_ff; architecture arch_dff of d_ff is begin process(clock) begin if (clock'event and clock='1') then q <= d; end if; end process; end arch_dff;