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
e165b747
Commit
e165b747
authored
Jan 01, 2020
by
Miodrag Milanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some regressed tests
parent
e430882c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletions
+15
-1
regression/issue_00084/top.v
+6
-0
regression/issue_00623/issue_00623.ys
+3
-1
regression/issue_00705/top.v
+6
-0
No files found.
regression/issue_00084/top.v
View file @
e165b747
...
...
@@ -6,6 +6,12 @@ input ce;
output
reg
[
7
:
0
]
q
;
reg
[
7
:
0
]
ram
[
1023
:
0
]
;
integer
j
;
// memory not created if there is no initial content
initial
for
(
j
=
0
;
j
<
256
;
j
=
j
+
1
)
ram
[
j
]
=
8'h00
;
always
@
(
posedge
clk
)
begin
...
...
regression/issue_00623/issue_00623.ys
View file @
e165b747
...
...
@@ -2,4 +2,6 @@ read_verilog ../top.v
tribuf -logic
synth -top bidirtest
iopadmap -bits -inpad IBUF O:PAD -outpad OBUF I:PAD -tinoutpad IOBUF ENA:O:I:PAD bidirtest
select -assert-count 0 t:IOBUF
select -assert-count 1 t:IOBUF
select -assert-count 2 t:IBUF
select -assert-count 1 t:OBUF
regression/issue_00705/top.v
View file @
e165b747
...
...
@@ -5,6 +5,12 @@ module top(
)
;
reg
[
7
:
0
]
rom_data
[
0
:
255
]
;
integer
j
;
// memory not created if there is no initial content
initial
for
(
j
=
0
;
j
<
256
;
j
=
j
+
1
)
rom_data
[
j
]
=
8'h00
;
always
@
(
posedge
clk
)
dbr
<=
rom_data
[
addr
]
;
...
...
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