20 lines
331 B
C++
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_ */
|