From 1fb7a9bd5eb41e87871bcbb3423caaabdd8ce1d9 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 11 Apr 2025 21:22:18 -0400 Subject: 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. --- inc/response.h | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 inc/response.h (limited to 'inc/response.h') 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 - -enum Response { - OK, - WAIT, - BLOCKED, - STALLED, -}; - -std::ostream &operator<<(std::ostream &os, Response r); - -#endif /* RESPONSE_H_INCLUDED */ -- cgit v1.2.3