changed build structure

This commit is contained in:
gernhard
2014-03-15 18:31:16 +01:00
parent 8ecd91c040
commit 4dffbf9383
49 changed files with 214 additions and 447 deletions

View File

@@ -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;
};
};