mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Add demonstration of breakage
Unused outputs lead to undriven buffers, which lead to syntax errors.
This commit is contained in:
parent
6cf5157fe7
commit
0723672451
|
@ -1,6 +1,7 @@
|
||||||
module demo (
|
module demo (
|
||||||
input clk,
|
input clk,
|
||||||
output [15:0] leds
|
output [15:0] leds
|
||||||
|
//,output unused
|
||||||
);
|
);
|
||||||
localparam PRESCALE = 20;
|
localparam PRESCALE = 20;
|
||||||
reg [PRESCALE+3:0] counter = 0;
|
reg [PRESCALE+3:0] counter = 0;
|
||||||
|
|
Loading…
Reference in a new issue