Skip to content

Commit

Permalink
remove MCW_ROOT from setup-cocotb inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Sep 25, 2023
1 parent f947d79 commit 6de95bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ install-caravel-cocotb:

.PHONY: setup-cocotb-env
setup-cocotb-env:
@(python3 $(PROJECT_ROOT)/verilog/dv/setup-cocotb.py $(CARAVEL_ROOT) $(MCW_ROOT) $(PDK_ROOT) $(PDK) $(PROJECT_ROOT))
@(python3 $(PROJECT_ROOT)/verilog/dv/setup-cocotb.py $(CARAVEL_ROOT) $(PDK_ROOT) $(PDK) $(PROJECT_ROOT))

.PHONY: setup-cocotb
setup-cocotb: install-caravel-cocotb setup-cocotb-env simenv-cocotb
Expand Down
4 changes: 1 addition & 3 deletions verilog/dv/setup-cocotb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@

@click.command()
@click.argument('caravel_root', type=click.Path(exists=True))
@click.argument('mcw_root', type=click.Path(exists=True))
@click.argument('pdk_root', type=click.Path(exists=True))
@click.argument('pdk')
@click.argument('user_project_root', type=click.Path(exists=True))
def update_design_info(caravel_root, mcw_root, pdk_root, pdk, user_project_root):
def update_design_info(caravel_root, pdk_root, pdk, user_project_root):
data = {
'CARAVEL_ROOT': caravel_root,
'MCW_ROOT': mcw_root,
'USER_PROJECT_ROOT': user_project_root,
'PDK_ROOT': pdk_root,
'PDK': pdk,
Expand Down

0 comments on commit 6de95bd

Please sign in to comment.