A cache memory with 4 KiB, each block is 16 words, there are 64 lines in the cache.
Tag = 18
Index = 6
Block offset = 4
Byte Offset = 2
I want to know for block number 448 what is the first address in the block and what is the last address in the block.
I know that in the block there are 16 words, but I don't understand how I can find the last and first addresses.
Any ideas?
Any help will be appreciated!
In your configuration a memory block is made of 16 words. Let me also assume that a word is 4 bytes and the memory is byte addressable.
1 Block = 16 words = 64 bytes
Block numbers usually grow with memory addresses, that is:
In general, for a block i its address range is
[64*i, 64*i-1]
.