This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
formal_hw_verification
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
6
Wiki
Activity
Browse Source
Adapt to use GHDL as plugin for Yosys VHDL synthesis
master
T. Meissner
5 years ago
parent
c6cc9203d3
commit
195765a2aa
3 changed files
with
11 additions
and
11 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
vai_reg/Makefile
+3
-9
vai_reg/symbiyosys.sby
+6
-0
vai_reg/vai_reg.vhd
+ 2
- 2
vai_reg/Makefile
View File
@ -1,5 +1,5 @@
vai_reg
:
vai_reg
.
vhd
properties
.
sv
symbiyosys
.
sby
sby -f -d work symbiyosys.sby
vai_reg
:
vai_reg
.
vhd
symbiyosys
.
sby
sby -
-yosys
"yosys -m ghdl"
-
f -d work symbiyosys.sby
clean
:
+ 3
- 9
vai_reg/symbiyosys.sby
View File
@ -1,19 +1,13 @@
[options]
depth 30
wait on
mode prove
#mode bmc
mode bmc
[engines]
smtbmc
abc pdr
smtbmc z3
[script]
verific -vhdl vai_reg.vhd
verific -formal properties.sv
verific -import -extnets -all vai_reg
ghdl --std=08 -fpsl vai_reg.vhd -e vai_reg
prep -top vai_reg
[files]
vai_reg.vhd
properties.sv
+ 6
- 0
vai_reg/vai_reg.vhd
View File
@ -159,5 +159,11 @@ begin
end
process
;
-- psl default clock is rising_edge(Clk_i);
-- psl restrict {Reset_n_i = '0'[*5]; Reset_n_i = '1'[+]}[*1];
-- psl assert always unsigned(a_addr) < 8;
end
architecture
rtl
;
Write
Preview
Loading…
Cancel
Save