Merge pull request #743 from quswarabid/tb_fix_uncore

the fix in testbench-imperas for uncore part of soc (unresolved reference)
This commit is contained in:
Rose Thompson 2024-04-17 12:56:27 -05:00 committed by GitHub
commit f94aab2d0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,7 +110,7 @@ module testbench;
$error("Must specify test directory using plusarg testDir");
end
if (P.BUS_SUPPORTED) $readmemh(memfilename, dut.uncore.uncore.ram.ram.memory.RAM);
if (P.BUS_SUPPORTED) $readmemh(memfilename, dut.uncoregen.uncore.ram.ram.memory.RAM);
else $error("Imperas test bench requires BUS.");
ProgramAddrMapFile = {testDir, "/ref/ref.elf.objdump.addr"};