From: Clifford Wolf Date: Sat, 21 Feb 2015 13:31:02 +0000 (+0100) Subject: Hotfix for yosysjs/demo03.html X-Git-Tag: yosys-0.6~404 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f6737f08f812f01e3917389e1fee5a37bd446b6;p=yosys.git Hotfix for yosysjs/demo03.html --- diff --git a/misc/yosysjs/demo03.html b/misc/yosysjs/demo03.html index c9386aee8..3dc465cbf 100644 --- a/misc/yosysjs/demo03.html +++ b/misc/yosysjs/demo03.html @@ -28,10 +28,10 @@ endmodule

module top(input clk, reset, input [7:0] A, output reg [7:0] Y);
-	  always @(posedge clock) begin
-	    Y <= A | {4{reset}};
-	  end
-	endmodule

+ always @(posedge clock) begin + Y <= A | {4{reset}}; + end +endmodule