diff options
author | bd <bdunahu@operationnull.com> | 2025-04-11 21:22:18 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-11 21:22:18 -0400 |
commit | 1fb7a9bd5eb41e87871bcbb3423caaabdd8ce1d9 (patch) | |
tree | 08549aa6c7cbae114958df62f92c9e60eb5f114c /inc/response.h | |
parent | 101f0facf8002907ca6e19faabfdcf472c0c3152 (diff) |
First part of storage rework (see description)
- Removed response enum.
- Removed messy ostream override, and cli.cc test class
- Removed accessor enum, and instead used unique pointer to identify accessor.
- Simplified storage by removing is_waiting variables.
- Rewrote DRAM and Cache to use Storage constructor.
Diffstat (limited to 'inc/response.h')
-rw-r--r-- | inc/response.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/inc/response.h b/inc/response.h deleted file mode 100644 index 05e9352..0000000 --- a/inc/response.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef RESPONSE_H -#define RESPONSE_H -#include <iostream> - -enum Response { - OK, - WAIT, - BLOCKED, - STALLED, -}; - -std::ostream &operator<<(std::ostream &os, Response r); - -#endif /* RESPONSE_H_INCLUDED */ |