search for: b8eda9f

Displaying 1 result from an estimated 1 matches for "b8eda9f".

Did you mean: b8d9a9f
2009 Mar 31
1
[PATCH 1/1] CORE/cache: add cache priority parameter
...clobber. Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- This patch allows functions to request a sector as cache but it will only be available as cached until a cache miss. Inspired by a discussion in the last few days. diff --git a/core/cache.inc b/core/cache.inc index 5975557..b8eda9f 100644 --- a/core/cache.inc +++ b/core/cache.inc @@ -43,6 +43,8 @@ initcache: ; and if it is already there, return a pointer in GS:SI ; otherwise load it and return said pointer. ; +; DX Cache priority; 0 -> store as least recently used +; ; Assumes CS == DS. ; getcachesector: @@ -8...