Files
DRAMSys/DRAM/dram/core/scheduling/Command.h
2014-03-15 18:31:16 +01:00

20 lines
331 B
C++

/*
* Command.h
*
* Created on: Mar 5, 2014
* Author: jonny
*/
#ifndef COMMAND_H_
#define COMMAND_H_
namespace controller {
enum Command {NOP, Precharge, PrechargeAll, Activate, Read, Write, ReadA, WriteA, Refresh};
typedef std::vector<Command> CommandSequence;
} /* namespace controller */
#endif /* COMMAND_H_ */