31 lines
464 B
C++
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_ */
|