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
d0e3b794
Commit
d0e3b794
authored
Jul 08, 2023
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bump iverilog and use explicit named port connections in tests
parent
0f822402
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
.github/workflows/main.yaml
+1
-1
test/core/always_latch_tb.v
+1
-1
test/core/interface_generate.v
+1
-1
test/core/logic_struct_select_tb.v
+1
-1
No files found.
.github/workflows/main.yaml
View file @
d0e3b794
...
@@ -41,7 +41,7 @@ jobs:
...
@@ -41,7 +41,7 @@ jobs:
-
macOS-11
-
macOS-11
needs
:
build
needs
:
build
env
:
env
:
IVERILOG_REF
:
6307057e8db8419b422361973aca0b435eb2bde1
IVERILOG_REF
:
872ccd32c45cde18855f76d2a87469f7a23612ba
steps
:
steps
:
-
uses
:
actions/checkout@v1
-
uses
:
actions/checkout@v1
-
name
:
Install Dependencies (macOS)
-
name
:
Install Dependencies (macOS)
...
...
test/core/always_latch_tb.v
View file @
d0e3b794
...
@@ -8,7 +8,7 @@ module top;
...
@@ -8,7 +8,7 @@ module top;
forever
#
1
en
=
~
en
;
forever
#
1
en
=
~
en
;
end
end
test
m
(
.
a
,
.
b
,
.
en
)
;
test
m
(
a
,
b
,
en
)
;
initial
begin
initial
begin
$
monitor
($
time
,
a
,
b
,
en
)
;
$
monitor
($
time
,
a
,
b
,
en
)
;
...
...
test/core/interface_generate.v
View file @
d0e3b794
...
@@ -39,7 +39,7 @@ module top;
...
@@ -39,7 +39,7 @@ module top;
genvar
j
;
genvar
j
;
for
(
j
=
0
;
j
<
N
-
1
;
j
=
j
+
1
)
begin
:
clients
for
(
j
=
0
;
j
<
N
-
1
;
j
=
j
+
1
)
begin
:
clients
ClientTick
#(
j
,
j
+
1
)
client
(
ClientTick
#(
j
,
j
+
1
)
client
(
.
clock
,
.
clock
(
clock
)
,
.
client_req
(
intf
.
req
[
j
+
1
])
.
client_req
(
intf
.
req
[
j
+
1
])
)
;
)
;
end
end
...
...
test/core/logic_struct_select_tb.v
View file @
d0e3b794
module
top
;
module
top
;
reg
[
1
:
0
]
sel
;
reg
[
1
:
0
]
sel
;
wire
[
7
:
0
]
out
;
wire
[
7
:
0
]
out
;
example
e
(
.
sel
,
.
out
)
;
example
e
(
sel
,
out
)
;
integer
i
=
0
;
integer
i
=
0
;
initial
initial
for
(
i
=
0
;
i
<
10
;
i
=
i
+
1
)
for
(
i
=
0
;
i
<
10
;
i
=
i
+
1
)
...
...
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