Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
axi_vme_bridge
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rimfaxe
axi_vme_bridge
Commits
ac77045e
Commit
ac77045e
authored
5 years ago
by
Michael Munch
Browse files
Options
Downloads
Patches
Plain Diff
Added boiler plate files
parent
49b4156e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-1
2 additions, 1 deletion
.gitignore
.gitlab-ci.yml
+14
-0
14 additions, 0 deletions
.gitlab-ci.yml
run.py
+19
-0
19 additions, 0 deletions
run.py
with
35 additions
and
1 deletion
.gitignore
+
2
−
1
View file @
ac77045e
axi_vme_bridge
\ No newline at end of file
axi_vme_bridge
vunit_out
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
0 → 100644
+
14
−
0
View file @
ac77045e
vunit
:
stage
:
build
image
:
ghdl/vunit:mcode
# before_script:
# - source /opt/Xilinx/Vivado/2018.2/settings64.sh
script
:
-
python3 run.py
formal
:
stage
:
build
image
:
ghdl/synth:formal
script
:
-
cd src
-
sby --yosys "yosys -m ghdl" -f axi_vme_bridge.sby
This diff is collapsed.
Click to expand it.
run.py
0 → 100644
+
19
−
0
View file @
ac77045e
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2014-2018, Lars Asplund lars.anders.asplund@gmail.com
from
os.path
import
join
,
dirname
from
vunit
import
VUnit
root
=
dirname
(
__file__
)
ui
=
VUnit
.
from_argv
()
ui
.
add_osvvm
()
ui
.
enable_location_preprocessing
()
ui
.
add_array_util
()
lib
=
ui
.
add_library
(
"
lib
"
)
lib
.
add_source_files
(
join
(
root
,
"
src
"
,
"
*.vhd
"
))
lib
.
add_source_files
(
join
(
root
,
"
src
"
,
"
test
"
,
"
*.vhd
"
),
allow_empty
=
True
)
ui
.
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment