mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-23 21:38:55 -04:00
Updated logger to new IClass signal name
This commit is contained in:
parent
28142eff64
commit
312c9c9f55
1 changed files with 2 additions and 2 deletions
|
@ -261,11 +261,11 @@ module loggers import cvw::*; #(parameter cvw_t P,
|
|||
$fwrite(file, "BEGIN %s\n", memfilename);
|
||||
$fwrite(CFIfile, "BEGIN %s\n", memfilename);
|
||||
end
|
||||
if(dut.core.ifu.InstrClassM[0] & ~dut.core.StallW & ~dut.core.FlushW & dut.core.InstrValidM) begin
|
||||
if(dut.core.ifu.IClassM[0] & ~dut.core.StallW & ~dut.core.FlushW & dut.core.InstrValidM) begin
|
||||
direction = PCSrcM ? "t" : "n";
|
||||
$fwrite(file, "%h %s\n", dut.core.PCM, direction);
|
||||
end
|
||||
if((|dut.core.ifu.InstrClassM) & ~dut.core.StallW & ~dut.core.FlushW & dut.core.InstrValidM) begin
|
||||
if((|dut.core.ifu.IClassM) & ~dut.core.StallW & ~dut.core.FlushW & dut.core.InstrValidM) begin
|
||||
direction = PCSrcM ? "t" : "n";
|
||||
$fwrite(CFIfile, "%h %s\n", dut.core.PCM, direction);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue