mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
verific: import attributes on ports
Co-authored-by: Miodrag Milanović <[email protected]>
This commit is contained in:
co-authored by
Miodrag Milanović
parent
1b6d1e9419
commit
833b67af80
@@ -26,9 +26,9 @@ reg [DEPTH_LOG2-1:0] counter = 0;
|
||||
reg done = 1'b0;
|
||||
always @(posedge clk) begin
|
||||
if (!done)
|
||||
counter = counter + 1;
|
||||
counter = counter + 1'b1;
|
||||
if (counter == 0)
|
||||
done = 1;
|
||||
done = 1'b1;
|
||||
end
|
||||
|
||||
wire [WIDTH-1:0] old_data = PRIME1 * counter;
|
||||
|
||||
Reference in New Issue
Block a user