8 有關直接對映(direct mapped)快取記憶體(cache memory)的定義,下列敘述何者正確?
(A)每一個主記憶體(main memory)位址只對映到快取記憶體中的一個位址
(B)存取時只能直接使用實體位址(physical address)
(C)快取記憶體中的一個位址僅可存放一個主記憶體位址中的資料
(D)存取時只能直接使用虛擬位址(virtual address)

答案:登入後查看
統計: A(255), B(82), C(146), D(41), E(0) #2574505

詳解 (共 2 筆)

#4479434
直接對映快取:一種高速記憶體組織方式,只...
(共 83 字,隱藏中)
前往觀看
10
0
#5229234

A direct-mapped cache is the simplest approach: each main memory address maps to exactly one cache block. For example, on the right is a 16-byte main memory and a 4-byte cache (four 1-byte blocks). Memory locations 0, 4, 8 and 12 all map to cache block 0.

https://courses.cs.washington.edu/courses/cse378/09wi/lectures/lec15.pdf

所以A正確的 

2
0