Fix doc errors and warnings for memfuzzer
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
#include <vpi_user.h>
|
||||
#include <svdpi.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
extern "C" void memfuzz_init_rs(int num_lanes);
|
||||
|
||||
@@ -47,7 +47,7 @@ module SimMemFuzzer #(parameter NUM_LANES = 4) (
|
||||
input inflight,
|
||||
output finished
|
||||
);
|
||||
// "in": verilog->C, "out": C->verilog
|
||||
// "in": C->verilog, "out": verilog->C
|
||||
// need to be in ascending order to match with C indexing
|
||||
// C array sizes are static, so need to use MAX_NUM_LANES
|
||||
bit __out_a_ready [0:`MAX_NUM_LANES-1];
|
||||
|
||||
@@ -2055,7 +2055,7 @@ class MemFuzzer(
|
||||
val laneNodes = Seq.tabulate(numLanes) { i =>
|
||||
val clientParam = Seq(
|
||||
TLMasterParameters.v1(
|
||||
name = "MemTraceDriver" + i.toString,
|
||||
name = "MemFuzzer" + i.toString,
|
||||
sourceId = IdRange(0, numSrcIds)
|
||||
// visibility = Seq(AddressSet(0x0000, 0xffffff))
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user