Skip to content

Commit

Permalink
Debug: remove params
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Oct 24, 2023
1 parent 607f521 commit 2236807
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion idma.mk
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ idma_verilator_clean:

.PHONY: idma_spinx_doc idma_spinx_doc_clean

idma_spinx_doc: $(IDMA_RTL_DOC_ALL) $(IDMA_RTL_DOC_ALL)
idma_spinx_doc: $(IDMA_RTL_DOC_ALL)
$(SPHINXBUILD) -M html $(IDMA_DOC_SRC_DIR) $(IDMA_DOC_OUT_DIR)

idma_spinx_doc_clean:
Expand Down
7 changes: 3 additions & 4 deletions jobs/jobs.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"MemSysDepth" : 0,
"CombinedShifter" : 0,
"MaskInvalidData" : 1,
"RAWCouplingAvail" : 1,
"RAWCouplingAvail" : 0,
"HardwareLegalizer" : 1,
"RejectZeroTransfers" : 1,
"ErrorHandling" : 0
Expand Down Expand Up @@ -95,7 +95,7 @@
"MemSysDepth" : 0,
"CombinedShifter" : 0,
"MaskInvalidData" : 1,
"RAWCouplingAvail" : 1,
"RAWCouplingAvail" : 0,
"HardwareLegalizer" : 1,
"RejectZeroTransfers" : 1,
"ErrorHandling" : 0
Expand Down Expand Up @@ -129,8 +129,7 @@
"ErrorHandling" : 0
},
"proc_id" : "rw_axi",
"testbench": "tb_nd_idma_backend",
"testbench": "tb_idma_nd_backend",
"synth_top": "idma_nd_backend_synth"
}
}

2 changes: 1 addition & 1 deletion src/backend/tpl/idma_backend.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ w_req.decouple_aw || (w_req.w_dp_req.dst_protocol inside {\
% else:
`IDMA_NONSYNTH_BLOCK(
initial begin
$fatal(1, "Channel Coupler only implemented for multiprotocol DMA!");
$fatal(1, "Channel Coupler only implemented for AXI DMAs!");
end
)
% endif
Expand Down
2 changes: 1 addition & 1 deletion test/include/tb_tasks.svh
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
endtask
`endif

`ifdef PROT_AXI
`ifdef PROT_AXI4
// set error flag in the AXI-attached memory
task set_error_mem (
input addr_t addr_i,
Expand Down

0 comments on commit 2236807

Please sign in to comment.