Tagged Questions
1
vote
0answers
28 views
Shift, Rotate and Rotate All: What are they used for and do I need them all?
My question: What exactly is the Rotate All function used for and can it be implemented another way in software if needed?
Why? I'm trying to build a CPU out of discrete logic chips, similar to what ...
3
votes
1answer
292 views
push return values in stack frame
I'm wondering if it makes sense to push the return value of a function in its the stack-frame.
I know return values are mostly stored in registers (eax for gcc), but is it for performance only?
...