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/accessor.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 inc/accessor.h (limited to 'inc/accessor.h') diff --git a/inc/accessor.h b/inc/accessor.h deleted file mode 100644 index eb56785..0000000 --- a/inc/accessor.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef ACCESSOR_H -#define ACCESSOR_H -#include - -enum Accessor { - IDLE, - WRITE, - MEM, - EXEC, - DCDE, - FETCH, - L1CACHE, - SIDE, -}; - -std::ostream &operator<<(std::ostream &os, Accessor a); - -#endif /* ACCESSOR_H_INCLUDED */ -- cgit v1.2.3