projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ab1e49
)
Missing endmodule
author
Eddie Hung
<eddie@fpgeh.com>
Fri, 22 Nov 2019 20:37:57 +0000
(12:37 -0800)
committer
Eddie Hung
<eddie@fpgeh.com>
Fri, 22 Nov 2019 20:37:57 +0000
(12:37 -0800)
tests/simple_abc9/abc9.v
patch
|
blob
|
history
diff --git
a/tests/simple_abc9/abc9.v
b/tests/simple_abc9/abc9.v
index 596a525017284ad208f9352a1fb8a6ba29e5ec74..6bdd3bc3206aa8eb6cad50a2cdcaed1eb42a9650 100644
(file)
--- a/
tests/simple_abc9/abc9.v
+++ b/
tests/simple_abc9/abc9.v
@@
-288,3
+288,4
@@
endmodule
module abc9_test033(input clk, d, output reg q1, q2);
always @(posedge clk) q1 <= d;
always @(posedge clk) q2 <= q1;
+endmodule