Skip to content

Commit

Permalink
restructured repo in anticipation of adding a SV implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
npatsiatzis committed Aug 17, 2023
1 parent 299be2c commit 3cf2ccd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cocotb_sim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ TOPLEVEL_LANG ?= vhdl
EXTRA_ARGS += --std=08
SIM_ARGS += --wave=wave.ghw

VHDL_SOURCES += $(PWD)/../rtl/toggle_synchronizer.vhd
VHDL_SOURCES += $(PWD)/../rtl/recirculation_mux.vhd
VHDL_SOURCES += $(PWD)/../rtl/VHDL/toggle_synchronizer.vhd
VHDL_SOURCES += $(PWD)/../rtl/VHDL/recirculation_mux.vhd
# use VHDL_SOURCES for VHDL files

# TOPLEVEL is the name of the toplevel module in your Verilog or VHDL file
Expand Down
6 changes: 3 additions & 3 deletions cocotb_sim/test_recirculation_mux.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def test_recirculation_mux(parameter):
module = "testbench"
toplevel = "recirculation_mux"
vhdl_sources = [
os.path.join(rtl_dir, "../rtl/toggle_synchronizer.vhd"),
os.path.join(rtl_dir, "../rtl/recirculation_mux.vhd"),
os.path.join(rtl_dir, "../rtl/VHDL/toggle_synchronizer.vhd"),
os.path.join(rtl_dir, "../rtl/VHDL/recirculation_mux.vhd"),
]


Expand Down Expand Up @@ -47,7 +47,7 @@ def test_toggle_synchronize(parameter):
module = "testbench_toggle"
toplevel = "toggle_synchronizer"
vhdl_sources = [
os.path.join(rtl_dir, "../rtl/toggle_synchronizer.vhd"),
os.path.join(rtl_dir, "../rtl/VHDL/toggle_synchronizer.vhd"),
]


Expand Down
4 changes: 2 additions & 2 deletions pyuvm_sim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ TOPLEVEL_LANG ?= vhdl
EXTRA_ARGS += --std=08
SIM_ARGS += --wave=wave.ghw

VHDL_SOURCES += $(PWD)/../rtl/toggle_synchronizer.vhd
VHDL_SOURCES += $(PWD)/../rtl/recirculation_mux.vhd
VHDL_SOURCES += $(PWD)/../rtl/VHDL/toggle_synchronizer.vhd
VHDL_SOURCES += $(PWD)/../rtl/VHDL/recirculation_mux.vhd
# use VHDL_SOURCES for VHDL files

# TOPLEVEL is the name of the toplevel module in your Verilog or VHDL file
Expand Down
4 changes: 2 additions & 2 deletions pyuvm_sim/test_pyuvm_recirculation_mux.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def test_recirculation_mux(parameter):
module = "tb"
toplevel = "recirculation_mux"
vhdl_sources = [
os.path.join(rtl_dir, "../rtl/toggle_synchronizer.vhd"),
os.path.join(rtl_dir, "../rtl/recirculation_mux.vhd"),
os.path.join(rtl_dir, "../rtl/VHDL/toggle_synchronizer.vhd"),
os.path.join(rtl_dir, "../rtl/VHDL/recirculation_mux.vhd"),
]


Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 3cf2ccd

Please sign in to comment.