Last commit before I nuke it

This commit is contained in:
2026-05-22 09:10:19 -07:00
parent 8fd83c2563
commit 3ea31e40aa
2 changed files with 66 additions and 7 deletions

View File

@@ -10,10 +10,12 @@ package application_wrapper_cache_pkg;
logic write_through;
} page_table_entry_t;
typedef enum logic [1:0] {
typedef enum logic [2:0] {
CACHE_NONE,
CACHE_READ,
CACHE_WRITE
CACHE_READ_SHARED,
CACHE_READ_UNIQUE,
CACHE_WRITE,
CACHE_CLEAN_UNIQUE
} cache_cmd_e;
endpackage