Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
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
sv2v
Commits
5b5bed8c
Commit
5b5bed8c
authored
Feb 15, 2022
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix dev iverilog test incompatibilities
parent
dce7492c
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
test/core/cast_top_item_tb.v
+1
-1
test/core/delay.sv
+1
-1
test/core/delay.v
+1
-1
test/core/interface_bundle.sv
+1
-1
test/core/interface_bundle.v
+1
-1
test/core/interface_generate.sv
+1
-1
test/core/interface_generate.v
+1
-1
test/core/jump.sv
+1
-1
test/core/jump.v
+1
-1
No files found.
test/core/cast_top_item_tb.v
View file @
5b5bed8c
module
top
;
module
top
;
genvar
i
;
genvar
i
;
generate
generate
for
(
i
=
0
;
i
<
32
;
i
=
i
+
1
)
for
(
i
=
1
;
i
<
32
;
i
=
i
+
1
)
mod
#(
i
)
m
()
;
mod
#(
i
)
m
()
;
endgenerate
endgenerate
endmodule
endmodule
test/core/delay.sv
View file @
5b5bed8c
...
@@ -9,6 +9,6 @@ module top;
...
@@ -9,6 +9,6 @@ module top;
#
1
;
#
1
;
#
10
;
a
=
'h5
;
#
10
;
a
=
'h5
;
#
10
;
#
10
;
$
finish
;
$
finish
(
0
)
;
end
end
endmodule
endmodule
test/core/delay.v
View file @
5b5bed8c
...
@@ -9,6 +9,6 @@ module top;
...
@@ -9,6 +9,6 @@ module top;
#
1
;
#
1
;
#
10
;
a
=
'h5
;
#
10
;
a
=
'h5
;
#
10
;
#
10
;
$
finish
;
$
finish
(
0
)
;
end
end
endmodule
endmodule
test/core/interface_bundle.sv
View file @
5b5bed8c
...
@@ -35,6 +35,6 @@ module top;
...
@@ -35,6 +35,6 @@ module top;
initial
begin
initial
begin
$
monitor
(
"%b %b %b %b"
,
b
.
index
,
b
.
clock
,
b
.
inp
,
b
.
out
)
;
$
monitor
(
"%b %b %b %b"
,
b
.
index
,
b
.
clock
,
b
.
inp
,
b
.
out
)
;
#
100
;
#
100
;
$
finish
;
$
finish
(
0
)
;
end
end
endmodule
endmodule
test/core/interface_bundle.v
View file @
5b5bed8c
...
@@ -23,7 +23,7 @@ module impl;
...
@@ -23,7 +23,7 @@ module impl;
initial
begin
initial
begin
$
monitor
(
"%b %b %b %b"
,
b_index
,
b_clock
,
b_inp
,
b_out
)
;
$
monitor
(
"%b %b %b %b"
,
b_index
,
b_clock
,
b_inp
,
b_out
)
;
#
100
;
#
100
;
$
finish
;
$
finish
(
0
)
;
end
end
endmodule
endmodule
...
...
test/core/interface_generate.sv
View file @
5b5bed8c
...
@@ -48,6 +48,6 @@ module top;
...
@@ -48,6 +48,6 @@ module top;
initial
begin
initial
begin
$
monitor
(
"%0d %b %b"
,
$
time
,
clock
,
intf
.
req
)
;
$
monitor
(
"%0d %b %b"
,
$
time
,
clock
,
intf
.
req
)
;
#
100
$
finish
;
#
100
$
finish
(
0
)
;
end
end
endmodule
endmodule
test/core/interface_generate.v
View file @
5b5bed8c
...
@@ -52,6 +52,6 @@ module top;
...
@@ -52,6 +52,6 @@ module top;
initial
begin
initial
begin
$
monitor
(
"%0d %b %b"
,
$
time
,
clock
,
intf
.
req
)
;
$
monitor
(
"%0d %b %b"
,
$
time
,
clock
,
intf
.
req
)
;
#
100
$
finish
;
#
100
$
finish
(
0
)
;
end
end
endmodule
endmodule
test/core/jump.sv
View file @
5b5bed8c
...
@@ -112,7 +112,7 @@ module top;
...
@@ -112,7 +112,7 @@ module top;
break
;
break
;
$
display
(
"UNREACHABLE "
,
`__LINE__
)
;
$
display
(
"UNREACHABLE "
,
`__LINE__
)
;
end
end
initial
#
5
$
finish
;
initial
#
5
$
finish
(
0
)
;
initial
begin
initial
begin
for
(
int
unsigned
i
=
0
;
i
<
5
;
++
i
)
begin
for
(
int
unsigned
i
=
0
;
i
<
5
;
++
i
)
begin
...
...
test/core/jump.v
View file @
5b5bed8c
...
@@ -87,7 +87,7 @@ module top;
...
@@ -87,7 +87,7 @@ module top;
i
=
10
;
i
=
10
;
end
end
end
end
initial
#
5
$
finish
;
initial
#
5
$
finish
(
0
)
;
initial
begin
:
loops_de
initial
begin
:
loops_de
reg
unsigned
[
31
:
0
]
i
;
reg
unsigned
[
31
:
0
]
i
;
...
...
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