projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f11a73
)
remove port direction workaround from test case
author
Stefan Biereigel
<stefan@biereigel.de>
Mon, 27 May 2019 16:10:39 +0000
(18:10 +0200)
committer
Stefan Biereigel
<stefan@biereigel.de>
Mon, 27 May 2019 16:10:39 +0000
(18:10 +0200)
tests/various/wandwor.v
patch
|
blob
|
history
diff --git
a/tests/various/wandwor.v
b/tests/various/wandwor.v
index 824f89683d76f7fc2032137db0322050be09ecb9..d1dca62692436d18fe8ce5445013d83751c15809 100644
(file)
--- a/
tests/various/wandwor.v
+++ b/
tests/various/wandwor.v
@@
-17,7
+17,6
@@
module c;
wand E;
- wire E_wire = E;
genvar i;
for (i = 0; i < 3; i = i + 1)
@@
-27,7
+26,7
@@
module c;
);
b b_inst (
- .D(E
_wire
)
+ .D(E)
);
end