summaryrefslogtreecommitdiff
path: root/ext/drampower/src/MemArchitectureSpec.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/drampower/src/MemArchitectureSpec.h')
-rw-r--r--ext/drampower/src/MemArchitectureSpec.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/ext/drampower/src/MemArchitectureSpec.h b/ext/drampower/src/MemArchitectureSpec.h
index ca79edc91..49eddc8ac 100644
--- a/ext/drampower/src/MemArchitectureSpec.h
+++ b/ext/drampower/src/MemArchitectureSpec.h
@@ -31,13 +31,15 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * Authors: Karthik Chandrasekar
+ * Authors: Karthik Chandrasekar, Sven Goossens
*
*/
#ifndef TOOLS_MEM_ARCHITECTURE_SPEC_H
#define TOOLS_MEM_ARCHITECTURE_SPEC_H
+#include <stdint.h>
+
#include "Parametrisable.h"
namespace Data {
@@ -46,14 +48,14 @@ class MemArchitectureSpec : public virtual Parametrisable {
MemArchitectureSpec();
void processParameters();
- unsigned int burstLength;
- unsigned nbrOfBanks;
- unsigned nbrOfRanks;
- unsigned dataRate;
- unsigned nbrOfColumns;
- unsigned nbrOfRows;
- unsigned width;
- unsigned nbrOfBankGroups;
+ int64_t burstLength;
+ int64_t nbrOfBanks;
+ int64_t nbrOfRanks;
+ int64_t dataRate;
+ int64_t nbrOfColumns;
+ int64_t nbrOfRows;
+ int64_t width;
+ int64_t nbrOfBankGroups;
bool dll;
bool twoVoltageDomains;
bool termination;