33 lines
510 B
C++
33 lines
510 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(): numberOfBanks(8),Timings(numberOfBanks), RefreshBankwise(false),
|
|
nActivate(4)
|
|
{}
|
|
unsigned int numberOfBanks;
|
|
TimingConfiguration Timings;
|
|
|
|
bool RefreshBankwise;
|
|
|
|
unsigned int nActivate;
|
|
};
|
|
|
|
} /* namespace controller */
|
|
|
|
|
|
#endif /* CONFIGURATION_H_ */
|