Tagged Questions
The computer-organization tag has no wiki summary.
12
votes
4answers
2k views
How do you organize VMware Workstation images?
I currently use VMware workstation to create separate workspaces for various clients that I do work for. So for a given client I only install software needed for a specific job, and don't have to ...
2
votes
1answer
59 views
Memory accesses in MIPS
We're studying for our midterm in Computer Organization and Design on Tuesday, and none of us understand the following question:
procedure:
addi $sp, $sp, -4
sw $ra, 0($sp)
... Some ...
1
vote
3answers
73 views
Boolean algebra and circuits [closed]
EDIT
Alright, so after reading quite a bit I came up with some stuff and I just want to make sure if I'm headed in the right direction.
Sx, Sy, and Sz would be sign bits in a full adder that ...
0
votes
1answer
102 views
Cpu schedule, removing thread from queue
I'm implementing now CPU schedule algorithms FCFS, SJF and Round Robin. Could somebody tell when process is removed from queue (FCFS,SJF,RR)? I mean, first CPU execute thread and after executing ...