Tagged Questions

6
votes
5answers
723 views

Understanding word alignment

I understand what it means to access memory such that it is aligned but I don’t understand why this is necessary. For instance, why can I access a single byte from an address 0x…1 but I cannot access ...
4
votes
2answers
191 views

what is the best way to learn Verilog?

I had finished reading Verilog Quick Start by James Lee. I had also taken a look for the projects at opencores.com, so I decided to plan to design my own CPU for me to practice and I want to make an ...
4
votes
4answers
141 views

Off-chip memcpy?

I was profiling a program today at work that does a lot of buffered network activity, and this program spent most of its time in memcpy, just moving data back and forth between library-managed network ...
2
votes
1answer
464 views

CPU Cache implementation in C or C++ or SystemC

I need a very basic C or C++ source code of CPU cache. Google didnt help me find a proper one. The implementation only needs to provide the most fundamental functionality of a cache. For ex, in C++: ...
2
votes
2answers
218 views

How much time does it take to fetch one word from memory?

Taking Peter Norvig's advice, I am pondering on the question: How much time does it take to fetch one word from memory, with and without a cache miss? (Assume standard hardware and architecture. ...
1
vote
4answers
278 views

L1/2 cache problem

could L1/L2 cache line each cache multiple copies of the main memory data word?
0
votes
0answers
76 views

1-way set-associative mapping to cache set

Can you please tell me how can I obtain an answer for the following question: A cache has 8 blocks(23) and the main memory has 64 blocks(26). Each of the 64 blocks is given 6-bit binary id number ...