Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yosys-tests
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yosys-tests
Commits
0b2c61b7
Commit
0b2c61b7
authored
May 03, 2019
by
Miodrag Milanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wire init not good for wire in iverilog
parent
d7403442
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
40 additions
and
40 deletions
+40
-40
backends/write_aiger/testbench.v
+2
-2
backends/write_blif/testbench.v
+2
-2
backends/write_btor/testbench.v
+2
-2
backends/write_btor_div_mod/testbench.v
+2
-2
backends/write_btor_logic/testbench.v
+2
-2
backends/write_btor_shift/testbench.v
+2
-2
backends/write_edif/testbench.v
+2
-2
backends/write_firrtl_logic/testbench.v
+2
-2
backends/write_firrtl_reduce/testbench.v
+2
-2
backends/write_firrtl_shift/testbench.v
+2
-2
backends/write_intersynth/testbench.v
+2
-2
backends/write_json/testbench.v
+2
-2
backends/write_smt2_init_assert/testbench.v
+2
-2
backends/write_smt2_reduce/testbench.v
+2
-2
backends/write_smv_init_assert/testbench.v
+2
-2
backends/write_smv_reduce/testbench.v
+2
-2
backends/write_smv_shift/testbench.v
+2
-2
backends/write_verilog_concat/testbench.v
+6
-6
No files found.
backends/write_aiger/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_blif/testbench.v
View file @
0b2c61b7
...
...
@@ -5,8 +5,8 @@ module testbench;
reg
patt_carry_out
=
0
;
reg
patt_out1
=
0
;
reg
patt_carry_out1
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_btor/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_btor_div_mod/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_btor_logic/testbench.v
View file @
0b2c61b7
...
...
@@ -5,8 +5,8 @@ module testbench;
reg
patt_carry_out
=
0
;
reg
patt_out1
=
0
;
reg
patt_carry_out1
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_btor_shift/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_edif/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_firrtl_logic/testbench.v
View file @
0b2c61b7
...
...
@@ -5,8 +5,8 @@ module testbench;
reg
patt_carry_out
=
0
;
reg
patt_out1
=
0
;
reg
patt_carry_out1
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_firrtl_reduce/testbench.v
View file @
0b2c61b7
...
...
@@ -5,8 +5,8 @@ module testbench;
reg
patt_carry_out
=
0
;
reg
patt_out1
=
0
;
reg
patt_carry_out1
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_firrtl_shift/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_intersynth/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_json/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_smt2_init_assert/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_smt2_reduce/testbench.v
View file @
0b2c61b7
...
...
@@ -5,8 +5,8 @@ module testbench;
reg
patt_carry_out
=
0
;
reg
patt_out1
=
0
;
reg
patt_carry_out1
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_smv_init_assert/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_smv_reduce/testbench.v
View file @
0b2c61b7
...
...
@@ -5,8 +5,8 @@ module testbench;
reg
patt_carry_out
=
0
;
reg
patt_out1
=
0
;
reg
patt_carry_out1
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_smv_shift/testbench.v
View file @
0b2c61b7
...
...
@@ -3,8 +3,8 @@ module testbench;
reg
patt_out
=
0
;
reg
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
wire
out
;
wire
carryout
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
backends/write_verilog_concat/testbench.v
View file @
0b2c61b7
module
testbench
;
reg
[
4
:
0
]
in
;
wire
[
1
:
0
]
Ap
=
0
;
wire
[
2
:
0
]
Bp
=
0
;
wire
[
2
:
0
]
Cp
=
0
;
wire
[
1
:
0
]
A
=
0
;
wire
[
2
:
0
]
B
=
0
;
wire
[
2
:
0
]
C
=
0
;
wire
[
1
:
0
]
Ap
;
wire
[
2
:
0
]
Bp
;
wire
[
2
:
0
]
Cp
;
wire
[
1
:
0
]
A
;
wire
[
2
:
0
]
B
;
wire
[
2
:
0
]
C
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment