diff options
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/gui.cc | 2 | ||||
| -rw-r--r-- | gui/worker.cc | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -1,6 +1,6 @@  #include "gui.h"  #include "./ui_gui.h" -#include "byteswap.h" +// #include "byteswap.h"  GUI::GUI(QWidget *parent)      : QMainWindow(parent) diff --git a/gui/worker.cc b/gui/worker.cc index fac835e..2612eb1 100644 --- a/gui/worker.cc +++ b/gui/worker.cc @@ -3,7 +3,7 @@  Worker::Worker(QObject *parent) : QObject(parent) {}  void Worker::configure(std::vector<int> ways, std::vector<int> size, bool is_pipelined, bool is_cache_enabled) { -	this->d = new Dram(ways.size()+1); +	this->d = new Dram(ways.size()+10);  	setWays(ways);  	setSize(size);  	qDebug() << "is cache enabled:" << is_cache_enabled; | 
