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
b5cb2660
Commit
b5cb2660
authored
May 03, 2019
by
Miodrag Milanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
various issues causing iverilog to give bad result
parent
58b1f76a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
17 deletions
+8
-17
frontends/read/top.v
+0
-5
frontends/read_aiger/top.v
+0
-5
frontends/verilog_lexer_assert_assume_restrict/testbench.v
+4
-4
frontends/verilog_lexer_assert_assume_restrict/top.v
+2
-2
frontends/verilog_lexer_unique_priority/top.v
+2
-1
No files found.
frontends/read/top.v
View file @
b5cb2660
...
...
@@ -9,11 +9,6 @@ module top
output
cout
)
;
initial
begin
A
=
0
;
cout
=
0
;
end
`ifndef
BUG
assign
A
=
y
+
cin
;
assign
cout
=
y
+
A
;
...
...
frontends/read_aiger/top.v
View file @
b5cb2660
...
...
@@ -9,11 +9,6 @@ module top
output
cout
)
;
initial
begin
A
=
0
;
cout
=
0
;
end
`ifndef
BUG
assign
A
=
y
+
cin
;
assign
cout
=
y
+
A
;
...
...
frontends/verilog_lexer_assert_assume_restrict/testbench.v
View file @
b5cb2660
module
testbench
;
reg
[
2
:
0
]
in
;
wire
patt_out
;
wire
patt_carry_out
;
wire
out
;
wire
carryout
;
wire
patt_out
=
0
;
wire
patt_carry_out
=
0
;
wire
out
=
0
;
wire
carryout
=
0
;
initial
begin
// $dumpfile("testbench.vcd");
...
...
frontends/verilog_lexer_assert_assume_restrict/top.v
View file @
b5cb2660
...
...
@@ -5,8 +5,8 @@ module top
input
cin
,
input
clk
,
output
A
,
output
cout
output
reg
A
,
output
reg
cout
)
;
initial
begin
...
...
frontends/verilog_lexer_unique_priority/top.v
View file @
b5cb2660
...
...
@@ -85,7 +85,8 @@ input [15:0] D,
output
M2
,
M4
,
M8
,
M16
)
;
wire
a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
;
wire
a
,
c
,
d
,
e
,
g
;
reg
b
,
h
,
f
;
always
@
(
*
)
begin
...
...
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