From: Pepijn de Vos Date: Wed, 4 Sep 2019 08:58:48 +0000 (+0200) Subject: Add demonstration of breakage X-Git-Tag: working-ls180~956^2~34 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=072367245184528de0907f48ed45af79901d93eb;p=yosys.git Add demonstration of breakage Unused outputs lead to undriven buffers, which lead to syntax errors. --- diff --git a/examples/gowin/demo.v b/examples/gowin/demo.v index 3cb782fa7..f5c001893 100644 --- a/examples/gowin/demo.v +++ b/examples/gowin/demo.v @@ -1,6 +1,7 @@ module demo ( input clk, output [15:0] leds + //,output unused ); localparam PRESCALE = 20; reg [PRESCALE+3:0] counter = 0;