blob: fb4999d5d6a6383d47ccc09491e8066fa6eaae9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ACCESSOR_H
#define ACCESSOR_H
#include <iostream>
enum Accessor {
IDLE,
MEM,
FETCH,
L1CACHE,
SIDE,
};
std::ostream &operator<<(std::ostream &os, Accessor a);
#endif /* ACCESSOR_H_INCLUDED */
|