Fix non-standard usage of '" operator

This commit is contained in:
Tudor Timi 2020-05-21 18:37:39 +02:00 committed by Philipp Wagner
parent 8c6395a257
commit 3d796ee2aa

View file

@ -40,7 +40,10 @@ module core_ibex_tb_top;
parameter bit RV32B = 1'b0;
parameter bit BranchTargetALU = 1'b0;
parameter bit WritebackStage = 1'b0;
parameter MultiplierImplementation = `"`IBEX_CFG_MultiplierImplementation`";
// VCS has issues taking a string as a define, so we have to build up the string via the
// pre-processor.
parameter MultiplierImplementation = `PRIM_STRINGIFY(`IBEX_CFG_MultiplierImplementation);
ibex_core_tracing #(
.DmHaltAddr (`BOOT_ADDR + 'h0 ),