-2
votes
1answer
62 views
add numbers using mips [closed]
I am trying to add numbers from 1 to 10 using mips language. The last number has to be stored in the memory. Need help writing the program.
0
votes
1answer
38 views
How do I compile mips gnu?
Hi,
I am not even sure my thread title is correct or not. Here is my story. I visited western digital website to check for a new firmware of wdtv live. I found source code of wdtv …
1
vote
3answers
218 views
‘align’ instruction on MIPS
What exactly do this instruction? I know that it try to align data with a multiple of a especific number but, why would you need to do this? Is there an equivalent instruccion in o …
0
votes
1answer
84 views
Efficient Way to Print MIPS Int Array
I'm working on a homework assignment translating a C program we wrote to MIPS. My question is about general MIPS coding and not project specific issues though. I've run into an is …
0
votes
1answer
19 views
How to move the value of a floating point register to a general-purpose register in MIPS?
I have the following bit of MIPS assembly, run on the MARS simulator, given below:
.data
x: .space 4 # 4 bytes = 32 bits
li $v0, 6
syscall
At this point, the floating point va …
3
votes
7answers
687 views
How can I program MIPS assembly from x86 linux?
Are there any command line interpreters around for x86 linux inorder to run MIPS assembly programs?
I'd like to be able to write simple MIPS assembly programs and run them from th …
0
votes
2answers
41 views
MIPS Syscalls and $t registers
MIPS registers have a convention - $s registers are to be preserved across subroutine calls, so if your subroutine modifies them, it should save them to the stack, while $t registe …
0
votes
3answers
162 views
Problem with mips assembly
I have aproblem with my mips port....Whenever i try to compile a C program with a printf statement it gives a warning saying it is not recognized and in the generated assemble file …
0
votes
4answers
130 views
[MIPS] How is lw represented in C or C++?
So, for example, what would something like this:
lw $t1, 0($t0)
or
lw $t2, 8($t0)
Translate to in C or C++? I mean I'm loading a word from the address into a register, …
0
votes
4answers
467 views
convert c to mips assembly language
I am trying to convert some instruction to MIPS code. But have no idea how to do that.. i know c language so i can decode it to C but dont know how to convert it to MIPS.
I need …
0
votes
3answers
24 views
mips assembly question
does anyone know how the CPU determines which register should receive the result produced by an instruction?
anyone???
0
votes
4answers
216 views
In MIPS, how do I divide register contents by two?
Let's say I have $t0, and I'd like to divide its integer contents by two, and store it in $t1.
My gut says: srl $t1, $t0, 2
... but wouldn't that be a problem if... say... the ri …
1
vote
1answer
46 views
How do you allocate an array so it starts at certain place in memory?
How do you allocate an array so it starts at certain place in memory? For example
.data
array:
.space 400
would make an array with 100 words, but I wish to let array s …
0
votes
1answer
204 views
MIPS how can you compare a character taken from input?
Hello,
My program asks the user if the number he/she is thinking of is in a list. The user inputs a y or an n. How can I check if a user has entered y or n in assembly? Is it suff …
0
votes
1answer
118 views
MIPS: The Equivalent of la instruction without using pseudo codes?
The reference says the pseudo code for la (load address) is translated to:
Pseudo : la $1, Label
lui $1, Label[31:16]
ori $1,$1, label[15:0]
but when I try to assemble the c …
