diff options
author | bd <bdunahu@operationnull.com> | 2025-03-10 19:42:01 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-10 19:42:01 -0400 |
commit | 4dbe50416eea0fecc2aa6f5ce3dc7032c95234c5 (patch) | |
tree | 140af0aec8ee90ac4c15e8b877ff2dc88f33d7ae /inc/accessor.h | |
parent | 9009d358f7959b1dd60b77fea181be04ae190ef3 (diff) |
CLI view, clock, store, program banner
Diffstat (limited to 'inc/accessor.h')
-rw-r--r-- | inc/accessor.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/inc/accessor.h b/inc/accessor.h new file mode 100644 index 0000000..fb4999d --- /dev/null +++ b/inc/accessor.h @@ -0,0 +1,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 */ |