Skip to content

Commit 12befe3

Browse files
author
Paul Rosenfeld
committed
Name change, added/modified READMEs
1 parent 90ff298 commit 12befe3

33 files changed

+692
-73
lines changed

Bank.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
//Bank.cpp
2728
//
2829
//Class file for bank object

Bank.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef BANK_H
2728
#define BANK_H
2829

BankState.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
//BankState.cpp
2728
//
2829
//Class file for bank state object

BankState.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef BANKSTATE_H
2728
#define BANKSTATE_H
2829

BusPacket.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
//BusPacket.cpp
2728
//
2829
//Class file for bus packet object

BusPacket.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef BUSPACKET_H
2728
#define BUSPACKET_H
2829
//BusPacket.h

Callback.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -24,6 +24,7 @@
2424

2525

2626

27+
2728
#ifndef CALLBACK_H
2829
#define CALLBACK_H
2930

CommandQueue.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
//CommandQueue.cpp
2728
//
2829
//Class file for command queue object

CommandQueue.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef CMDQUEUE_H
2728
#define CMDQUEUE_H
2829

DRAMSim.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef DRAMSIM_H
2728
#define DRAMSIM_H
2829
/*

IniReader.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#include "IniReader.h"
2728

2829
using namespace std;

IniReader.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef INIREADER_H
2728
#define INIREADER_H
2829

MemoryController.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
//MemoryController.cpp
2728
//
2829
//Class file for memory controller object

MemoryController.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef MEMORYCONTROLLER_H
2728
#define MEMORYCONTROLLER_H
2829

MemorySystem.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
//MemorySystem.cpp
2728
//
2829
//Class file for JEDEC memory system wrapper

MemorySystem.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/****************************************************************************
2-
* DRAMSim: A Cycle Accurate DRAM simulator
3-
*
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
44
* Copyright (C) 2010 Elliott Cooper-Balis
5-
* Paul Rosenfeld
5+
* Paul Rosenfeld
66
* University of Maryland
77
*
88
* This program is free software: you can redistribute it and/or modify
@@ -23,6 +23,7 @@
2323

2424

2525

26+
2627
#ifndef MEMORYSYSTEM_H
2728
#define MEMORYSYSTEM_H
2829

PrintMacros.h

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
/****************************************************************************
2+
* DRAMSim2: A Cycle Accurate DRAM simulator
3+
*
4+
* Copyright (C) 2010 Elliott Cooper-Balis
5+
* Paul Rosenfeld
6+
* University of Maryland
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
*
21+
*****************************************************************************/
22+
23+
124
#ifndef PRINT_MACROS_H
225
#define PRINT_MACROS_H
326

README.pdf

171 KB
Binary file not shown.

0 commit comments

Comments
 (0)