Skip to content
Snippets Groups Projects
Commit ac77045e authored by Michael Munch's avatar Michael Munch
Browse files

Added boiler plate files

parent 49b4156e
No related branches found
No related tags found
No related merge requests found
axi_vme_bridge
\ No newline at end of file
axi_vme_bridge
vunit_out
\ No newline at end of file
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
run.py 0 → 100644
# 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()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment