From: megacz Date: Mon, 6 Apr 2009 18:47:30 +0000 (-0700) Subject: Debug.ship: ignore break signal -- allows demos with serial cable disconnected X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=5f5d9ed8353b6889f9dab9b4dc1fbb0f0e9d38da;p=fleet.git Debug.ship: ignore break signal -- allows demos with serial cable disconnected --- diff --git a/ships/Debug.ship b/ships/Debug.ship index 7b4c7b6..2c81785 100644 --- a/ships/Debug.ship +++ b/ships/Debug.ship @@ -63,7 +63,7 @@ public void service() { wire break; wire uart_cts; assign uart_cts = 0; - assign rst_out = rst_in || (force_reset!=0) || break; + assign rst_out = rst_in || (force_reset!=0) /* || break */; // fst=3 means clock divider is 3+2=5 for a 50Mhz clock => 10Mhz // using a 33Mhz clock, @@ -91,7 +91,7 @@ public void service() { // fpga -> host always @(posedge clk) begin - if (rst_in || break) begin + if (rst_in /* || break */) begin count_in <= 0; count_out <= 0; force_reset <= 0;