Files
DRAMSys/DRAM/src/core/Configuration.h
Janik Schlemminger 011e1a99ea Added: PrechargeChecker, ActivateChecker, ReadChecker, WriteChecker
Implemented: ActivateChecker
Added functionality to Bus (InternalScheduler)
2014-03-13 15:46:19 -07:00

31 lines
464 B
C++

/*
* Configuration.h
*
* Created on: Mar 6, 2014
* Author: jonny
*/
#ifndef CONFIGURATION_H_
#define CONFIGURATION_H_
#include <systemc.h>
#include "TimingConfiguration.h"
namespace controller{
struct Configuration
{
Configuration():Timings(numberOfBanks){}
unsigned int numberOfBanks = 8;
TimingConfiguration Timings;
bool RefreshBankwise = false;
unsigned int nActivate = 4;
};
} /* namespace controller */
#endif /* CONFIGURATION_H_ */