Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Oct 3, 2023
1 parent 956bbb9 commit 3687cf3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
3 changes: 2 additions & 1 deletion idma.mk
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ IDMA_VCS_ARGS := -full64 \
-debug_access+r \
-j 8 \
-CFLAGS "-Os"
IDMA_VCS_TB ?=
IDMA_VCS_PARAMS ?=

$(IDMA_VCS_DIR)/compile.sh: $(IDMA_BENDER_FILES) $(IDMA_TB_ALL) $(IDMA_RTL_ALL)
Expand All @@ -283,7 +284,7 @@ idma_vcs_compile: $(IDMA_VCS_DIR)/compile.sh

$(IDMA_VCS_DIR)/bin/%.vcs: idma_vcs_compile
mkdir -p $(IDMA_VCS_DIR)/bin
cd $(IDMA_VCS_DIR); $(VCS) $(IDMA_VCS_ARGS) $(IDMA_VCS_PARAMS) $* -o bin/$*.vcs
cd $(IDMA_VCS_DIR); $(VCS) $(IDMA_VCS_ARGS) $(IDMA_VCS_PARAMS) $(IDMA_VCS_TB) -o bin/$*.vcs

idma_vcs_clean:
rm -rf $(IDMA_VCS_DIR)/AN.DB
Expand Down
18 changes: 6 additions & 12 deletions jobs/jobs.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@
},
"gen_jobs" : {
},
"overrides" : {
"params" : {
"ErrorHandling" : 1
},
"proc_id" : {
"rw_axi"
}
"proc_id" : "rw_axi"
},
"r_axi_w_obi" : {
"seed" : 1336,
Expand All @@ -40,12 +38,10 @@
},
"gen_jobs" : {
},
"overrides" : {
"params" : {
"ErrorHandling" : 0
},
"proc_id" : {
"r_axi_w_obi"
}
"proc_id" : "r_axi_w_obi"
},
"r_obi_w_axi" : {
"seed" : 1336,
Expand All @@ -64,11 +60,9 @@
},
"gen_jobs" : {
},
"overrides" : {
"params" : {
"ErrorHandling" : 0
},
"proc_id" : {
"r_obi_w_axi"
}
"proc_id" : "r_obi_w_axi"
}
}

0 comments on commit 3687cf3

Please sign in to comment.