aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/achronix
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2022-09-21 18:01:31 +0200
committerGitHub <noreply@github.com>2022-09-21 18:01:31 +0200
commit55801852289a17fd6e47a94a2d3333a206b9ee88 (patch)
tree8d8b7fd94570a462f3c2c92a088b90b7df0c8f77 /techlibs/achronix
parentb2eb331b83072ec13377c8dc701e3dcf555255c1 (diff)
parent1ecf6aee9b331efebeca1bd95a3d5125abf8da50 (diff)
downloadyosys-55801852289a17fd6e47a94a2d3333a206b9ee88.tar.gz
yosys-55801852289a17fd6e47a94a2d3333a206b9ee88.tar.bz2
yosys-55801852289a17fd6e47a94a2d3333a206b9ee88.zip
Merge pull request #3488 from YosysHQ/micko/test_fix
Test fixes for latest iverilog
Diffstat (limited to 'techlibs/achronix')
-rw-r--r--techlibs/achronix/speedster22i/cells_sim.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/techlibs/achronix/speedster22i/cells_sim.v b/techlibs/achronix/speedster22i/cells_sim.v
index 6c87adb94..fc15e0966 100644
--- a/techlibs/achronix/speedster22i/cells_sim.v
+++ b/techlibs/achronix/speedster22i/cells_sim.v
@@ -68,9 +68,8 @@ end
assign dout = combout_rt & 1'b1;
endmodule
-module DFF (output q,
+module DFF (output reg q,
input d, ck);
- reg q;
always @(posedge ck)
q <= d;