diff options
author | bd <bdunahu@operationnull.com> | 2025-03-11 20:26:59 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-11 20:26:59 -0400 |
commit | c55104f8e99ea6ccb0c66a5e0d3cfc81dbbc19ab (patch) | |
tree | 30947c7018653ca18d4a69de20936b3615768f9e /inc | |
parent | 1400c65a1d19f96fff8b4a0e98fcd9ed792f4883 (diff) |
Fix small issue in fetch_resource wih off by one cycle count
Diffstat (limited to 'inc')
-rw-r--r-- | inc/definitions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/definitions.h b/inc/definitions.h index 80fccbe..eced554 100644 --- a/inc/definitions.h +++ b/inc/definitions.h @@ -39,7 +39,7 @@ /** * The total number of cycles a level one cache access takes */ -#define L1_CACHE_DELAY 1 +#define L1_CACHE_DELAY 0 /** * Return the N least-significant bits from integer K using a bit mask |