Tagged Questions

6
votes
2answers
92 views

Optimize this assembly code

I'm taking a Computer Architecture course right now, and we're going over basic R-type and I-type instructions (also, this is a RISC architecture), etc. I can't seem to figure out how to optimize this ...
3
votes
4answers
394 views

Is this a mistake in my Computer Architecture book?

I'm working on my HW for computer architecture and I came across the following problem: A = 247 B = 237 1) Assume A and B are signed 8-bit integers stored in two's complement format. ...
2
votes
1answer
64 views

Direct Map Cache and cache misses

I am working on my homework, but I am not sure how to calculate the total cache misses. I have been trying to understand it but it just is not making sense to me. I am given some Mips code and I need ...
1
vote
1answer
54 views

Update of Stack Pointer? [closed]

Here's the question I encountered Which of the following typically occurs when a procedure call is executed on a processor? I. Program counter is updated. II. Stack pointer is updated. ...
1
vote
1answer
61 views

Problem in translating from MIPS to C

I was trying to solve this homework assignment but was unable to come up with a solution. Below is the problem, Translate the following MIPS code into a high-level language program. Assume that ...
1
vote
3answers
41 views

Evaluating the operation of Assembly code

This is my homework assignment. Describe as concisely as possible what the following MIPS code achieves? Assume that register $8 holds base address of array A. addi $10, $0, 0 L1: lw $16, ...
1
vote
1answer
251 views

MIPS immediate instructions ori/addi/lui etc require Register Write?

I am learning about pipelining in MIPS. I had a question about immediate instructions and their instruction process. I keep reading that ori/addi/lui and are immediate instructions or I-type. I also ...
1
vote
2answers
168 views

Microprogramming in MIPS

I am learning about micro programming and am confused as to what a micro-instruction actually is. I am using the MIPS architecture. My questions are as follows Say for example I have the ADD ...
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 ...
0
votes
1answer
46 views

Problem in values of registers

I was trying to solve this homework assignment but was unable to come up with a solution. Below is the problem, Translate this code into MIPS machine once_more: lw $5, 48($6) sub $5, $5, ...