changed build structure
This commit is contained in:
@@ -9,10 +9,10 @@
|
||||
#include <gmock/gmock.h>
|
||||
#include <core/refresh/BankwiseRefreshManager.h>
|
||||
#include "testUtils.h"
|
||||
#include "common/dramextension.h"
|
||||
#include "common/dramExtension.h"
|
||||
|
||||
using namespace testing;
|
||||
using namespace common;
|
||||
|
||||
|
||||
namespace controller {
|
||||
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
sc_time tREFI = config.Timings.refreshTimings.at(i).tREFI;
|
||||
sc_time clk = config.Timings.clk;
|
||||
|
||||
colliding.add(Command::Read, tREFI - 1 * clk, 2 * clk);
|
||||
colliding.add(Read, tREFI - 1 * clk, 2 * clk);
|
||||
return colliding;
|
||||
};
|
||||
|
||||
@@ -50,7 +50,7 @@ public:
|
||||
sc_time tREFI = config.Timings.refreshTimings.at(i).tREFI;
|
||||
sc_time clk = config.Timings.clk;
|
||||
|
||||
non_colliding.add(Command::Read, tREFI - 3 * clk, 2 * clk);
|
||||
non_colliding.add(Read, tREFI - 3 * clk, 2 * clk);
|
||||
return non_colliding;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user