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
aa429204
Commit
aa429204
authored
Jun 10, 2023
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor AlwaysKW coverage improvements
parent
3db3fc0c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
10 deletions
+25
-10
src/Convert/AlwaysKW.hs
+0
-1
test/core/always_sense.sv
+9
-2
test/core/always_sense.v
+9
-2
test/core/always_sense.vh
+2
-0
test/core/always_sense_tb.v
+5
-5
No files found.
src/Convert/AlwaysKW.hs
View file @
aa429204
...
@@ -212,7 +212,6 @@ ports = filter ((/= Local) . snd) . map port
...
@@ -212,7 +212,6 @@ ports = filter ((/= Local) . snd) . map port
port
::
Decl
->
PortDir
port
::
Decl
->
PortDir
port
(
Variable
d
_
x
_
_
)
=
(
x
,
d
)
port
(
Variable
d
_
x
_
_
)
=
(
x
,
d
)
port
(
Net
d
_
_
_
x
_
_
)
=
(
x
,
d
)
port
_
=
(
""
,
Local
)
port
_
=
(
""
,
Local
)
-- get a list of non-local variables referenced within a module item, and
-- get a list of non-local variables referenced within a module item, and
...
...
test/core/always_sense.sv
View file @
aa429204
`include
"always_sense.vh"
module
mod
(
module
mod
(
input
wire
inp1
,
inp2
,
input
wire
`INPUTS
,
output
reg
out1
,
out2
,
out3
,
out4
,
out5
,
out6
,
out7
,
out8
,
out9
,
outA
,
outB
output
reg
`OUTPUTS
)
;
)
;
localparam
ZERO
=
0
;
localparam
ZERO
=
0
;
...
@@ -75,4 +76,10 @@ module mod(
...
@@ -75,4 +76,10 @@ module mod(
endfunction
endfunction
always_comb
always_comb
outB
=
h
(
ZERO
)
;
outB
=
h
(
ZERO
)
;
function
automatic
i
;
input
reg
x
;
// ignored
i
=
s
[
ONE
]
;
endfunction
always_comb
asgn
(
.
i
(
i
(
ZERO
))
,
.
o
(
outC
))
;
endmodule
endmodule
test/core/always_sense.v
View file @
aa429204
`include
"always_sense.vh"
module
mod
(
module
mod
(
input
wire
inp1
,
inp2
,
input
wire
`INPUTS
,
output
reg
out1
,
out2
,
out3
,
out4
,
out5
,
out6
,
out7
,
out8
,
out9
,
outA
,
outB
output
reg
`OUTPUTS
)
;
)
;
localparam
ZERO
=
0
;
localparam
ZERO
=
0
;
...
@@ -73,4 +74,10 @@ module mod(
...
@@ -73,4 +74,10 @@ module mod(
endfunction
endfunction
always
@
(
s
[
0
])
always
@
(
s
[
0
])
outB
=
h
(
ZERO
)
;
outB
=
h
(
ZERO
)
;
function
automatic
i
;
input
reg
x
;
// ignored
i
=
s
[
1
]
;
endfunction
always
@
(
s
[
1
])
asgn
(
outC
,
i
(
ZERO
))
;
endmodule
endmodule
test/core/always_sense.vh
0 → 100644
View file @
aa429204
`define INPUTS inp1, inp2
`define OUTPUTS out1, out2, out3, out4, out5, out6, out7, out8, out9, outA, outB, outC
test/core/always_sense_tb.v
View file @
aa429204
`include
"always_sense.vh"
module
top
;
module
top
;
reg
inp1
,
inp2
;
reg
`INPUTS
;
wire
out1
,
out2
,
out3
,
out4
,
out5
,
out6
,
out7
,
out8
,
out9
,
outA
,
outB
;
wire
`OUTPUTS
;
mod
m
(
inp1
,
inp2
,
out1
,
out2
,
out3
,
out4
,
out5
,
out6
,
out7
,
out8
,
out9
,
outA
,
outB
)
;
mod
m
(
`INPUTS
,
`OUTPUTS
)
;
initial
begin
initial
begin
$
monitor
(
inp1
,
inp2
,
$
monitor
(
`INPUTS
,
`OUTPUTS
)
;
out1
,
out2
,
out3
,
out4
,
out5
,
out6
,
out7
,
out8
,
out9
,
outA
,
outB
)
;
repeat
(
2
)
begin
repeat
(
2
)
begin
#
1
inp1
=
0
;
#
1
inp1
=
0
;
#
1
inp2
=
0
;
#
1
inp2
=
0
;
...
...
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