]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
*** empty log message ***
authorhadeshyp <hadeshyp>
Thu, 21 Jun 2012 21:11:06 +0000 (21:11 +0000)
committerhadeshyp <hadeshyp>
Thu, 21 Jun 2012 21:11:06 +0000 (21:11 +0000)
special/fpga_reboot.vhd

index 3b1e010145601f917366bd07b61b160b612fb3a8..9be0432f6afea94ed1d33fd7bf601d46e36099e3 100644 (file)
@@ -8,14 +8,14 @@ entity fpga_reboot is
     CLK       : in std_logic;
     RESET     : in std_logic;
     DO_REBOOT : in std_logic;
-    PROGRAMN  : out std_logic
+    PROGRAMN  : out std_logic := '1'
     );
 end entity;
 
 architecture fpga_reboot_arch of fpga_reboot is
 
 
-  signal delayed_restart_fpga : std_logic;
+  signal delayed_restart_fpga : std_logic := '0';
   signal restart_fpga_counter : unsigned(11 downto 0);  
 
 begin
@@ -39,6 +39,6 @@ PROC_REBOOT : process
     end if;
   end process;    
 
-PROGRAMN                 <= not delayed_restart_fpga when rising_edge(CLK);    
+PROGRAMN                 <= not delayed_restart_fpga;    
     
 end architecture;
\ No newline at end of file