The mips32 tag has no wiki summary.
6
votes
1answer
181 views
Is it possible to cross-compile D source code for MIPS?
Is it possible to cross-compile D source code for MIPS?
For example, I want to compile a D "Hello, world." program that will run on TI AR7-based devices, which have MIPS32 processor and typically run ...
3
votes
3answers
586 views
C++ running on PIC32 (MIPS32)
Unfortunately, my C app for PIC32 needs OO too much and I can't continue doing it in C.
Do you know any MIPS32 C++ compiler for PIC32?
Thanks
3
votes
1answer
304 views
2
votes
0answers
379 views
Reversing a string in MIPS Assembly
I'm trying to prompt the user for the length of a string, allocate space for that string, then print it out in reverse.
For the life of me, I can't figure out why this isn't working..
Sample ...
2
votes
2answers
75 views
Why can I not use li.s in MARS?
I cannot use li.s in MARS. I am new to MIPS programming and I am trying not to use any co processors. Why can I not use li.s is MARS the program? It would be very helpful is someone could lead me in a ...
2
votes
2answers
69 views
Finding offset from a code snippet
I am a bit stuck up with the following question,
Consider the following MIPS code and answer the questions that follow.
addi $t1, $s0, 400
loop: lw $s1, 0($s0)
add $s2, $s2, $s1
lw $s1, 4($s0)
...
2
votes
1answer
125 views
MIPS: Can I get unsigned int value from user via syscall?
The title pretty much sums this up. I am writing a program in 32-bit MIPS Assembly Language (using the MARS emulator) for a school project and I'm having zero luck reading in int values > ...
2
votes
4answers
250 views
How does libc work?
I'm writing a MIPS32 emulator and would like to make it possible to use the whole Standard C Library (maybe with the GNU extensions) when compiling C programs with gcc.
As I understand at this point, ...
2
votes
2answers
306 views
How to compute sin(x) using Assembly MIPS {formula provided}?
I'm just stuck with how to compute sin(x) in Assembly MIPS using the following formula
http://i.stack.imgur.com/YmxL4.jpg
plz if you have any idea write it down..
1
vote
1answer
81 views
Integer array indexing with MIPS assembly
I wanted to convert this C code into MIPS.
C Code:
f = A[B[h-g]]
We assume that h > g and B[h-g] > 0. h, g, f are integers.
Also assume that f is assigned to register $s0, g to $s1, h to ...
1
vote
1answer
62 views
Storing more than 32 bits in MIPS
I've had a lot of trouble with MIPS for storing values in registers (not div or mult operations). I need to store or hold data with 5 and 8 bytes, for example. How can I obtain a value such as ...
1
vote
1answer
182 views
Big Endian and Little Endian
Given is the snap shot of memory of a byte-addressable computer. What would be loaded into register $16 after execution of instruction lw $16, 24($17) if machine is big endian and when Little Endian. ...
1
vote
1answer
36 views
Need help in reading the diagram
I am trying to understand the diagram for register write operation in MIPS(Single Cycle Data Path). I do not get why do we need to AND the output of the decoder to the write enable signal? I am not ...
1
vote
1answer
227 views
How to make an update an array in MIPS?
I'm trying to make an array, and then update the values of certain cells if needed. From what I know, using the Stack Frame would be the best approach, but I can't get it to work. Anyone able to point ...
1
vote
1answer
118 views
compile 2.6.21 kernel for MIPS32
Can anybody please help me to compile kernel 2.6.21 for mips32 acrh? Please let me know which option/options should I select from make menuconfig. I have the toolchain installed and the target board ...
1
vote
3answers
39 views
How can I start developing for mips32 r2000 in ubuntu?
I have an urgent project in which I'm supposed to implement bignum. I only have experience working in IA-32, any basic advice would be helpful.
0
votes
2answers
29 views
I am having trouble with this MIPS program
My goal is to translate the C code below to MIPS assembly. I feel like I am missing a crucial part in my code. Can someone explain what I am doing wrong and what I need to do to fix the problem ...
0
votes
2answers
42 views
Did i mess up anywhere in writing this simple MIPS assembly code?
I need to translate this C code to MIPS assembly
here is the c code:
int tmp = 0;
for (int j = 0;j < 15;++j)
tmp = tmp * 2 + 3
This is my MIPS assembly code. If you see any mistakes i ...
0
votes
1answer
45 views
Loading address stored in register in MIPS
I'm having a small issue that I can't seem to get around. I have several numbers stored in the stack in the following fashion:
|5| 0($sp)
|4| 4($sp)
|3|
|8|
I want to traverse the stack, ...
0
votes
0answers
20 views
Measure execution time, using SPIM
I need to measure execution time of Hanoi Towers program, written in assembly language. Is there any function or specific register value used to do this task..?
0
votes
0answers
82 views
How to generate vhdl code from a schematic in xilinx
I was wondering if its possible to generate vhdl code from a schematic in xilinx. I know that the reverse is feasible. I want this to be done cause i am curious how the code will be like after i have ...
0
votes
1answer
69 views
Can someone look to see if i am doing my Newtons Method in MIPS correctly?(Assembly)
I am new to this and i am trying to do it without using co-processors. Any suggestions? I really need to do good on this assignment! This code is supposed to be in MIPS assembly in which codes ...
0
votes
1answer
102 views
MIPS Linux assembler code understanding about load byte
I have the following question here
I need to understand the following MIPS disassembling code:
.text:00489060 la $v0, 0x4D0000
.text:00489064 la $v0, 0x4D0000
...
0
votes
1answer
109 views
Need help in adding more functionality to MIPS Single Cycle Datapath
I am trying to add jal functionality to the following but I am stuck with how does it work. I know that it stores the old PC+4 value in the $ra register and then transfers the control to the function ...
0
votes
2answers
151 views
Why do we Sign Extend in load word instruction?
I am learning MIPS 32 bit. I wanted to ask that why do we Sign Extend the 16 bit offset (in Single Cycle Datapath) before sending it to the ALU in case of Store Word?
0
votes
1answer
56 views
Why do we need to Bit Extend the J type instruction to 2 bits only?
Please have a look at this Single Cycle Data Path in MIPS. The 26 bits of J type instruction are being Bit Extended to 28. I don't get the point. Shouldn't it be extended to 31 so it makes 32 bits ...
0
votes
1answer
31 views
Unable to make relation from the diagram
I am given the following diagram with the text. The author refers the AND gate which becomes the control signal PCSrc. But I am unable to make this relation from the diagram.
Here is the text,
ALU ...
0
votes
2answers
130 views
Problem loading memory address only using real instructions in MIPS asm on MARS
I'm trying to learn MIPS assembly language by myself using MARS simulator.
For didactic reasons I'm limiting myself to not using pseudo-instructions.
While trying to get the address of some data ...
0
votes
1answer
844 views
implementing a processor ( mips single cycle )
i have a mini project , in this project i need to implement a MIPS single cycle processor by Verilog.
here I write the ALU and ALUControl and FileRegister but i have a problem to implement the Pc ( ...
0
votes
0answers
17 views
distinguishing between registers assembly_Mips
I'm programing assembly mips and I'm somehow confused using register names ,
I know "t" registers are temporary where "s" are for saved values, would you please give an example when to use each one of ...
0
votes
0answers
48 views
Mips architecture interrupts/exceptions
How MIPS provide support for interrupts/exceptions and for two levels of actions (user/supervisor mode).
0
votes
2answers
267 views
Looping through strings 1 character at a time in MIPS
I'm having issues grasping the concept of string and characters in MIPS. If I'm trying to loop through two strings, and concatenate two characters at a time, how would I do this?
Lets say I have
...
0
votes
1answer
258 views
compiling android kernel for mips
I have downloaded the mips android sources. But this includes a prebuilt kernel image "kernel-eb-qemu". When I gave "file kernel-eb-qemu", this was displayed:
"kernel-eb-qemu: ELF 32-bit MSB ...
0
votes
1answer
67 views
Unsetting and resetting certain bits
For a homework assignment in school, I need to use a MMIO LED display where each led is exactly 2 bits stored within a byte. For the assignment I need to "move" these LEDs up, down, left, and right. I ...
0
votes
1answer
95 views
Mips x32 using an array help
Hey Everybody... im writing this code for one of my assignments and i need to have an array of size 128 which i do by
drops: .space 128
so that i can load that specific spot in drops and store a ...
0
votes
1answer
252 views
Adding bits x32 mips assembly
I am trying to add 2 strings of bits in a function and i cannot get it to work... any suggestions? here is my code below:
$a0, "11111111111100000001111111111110" #= -4064
$a1, ...
0
votes
3answers
168 views
MIPS assembly, register traversing?
Hello and thanks in advance,
My question is if it is possible to go through registers like having a pointer in one ($t0) and moving the pointer to another one ($t1).
What i actually want to do is in ...
0
votes
3answers
231 views
Does -fomit-frame-pointer *always* omit the fp?
Does -fomit-frame-pointer always omit the frame pointer? Is there ever a situation where both the pc and fp need to be setup? Does dynamic stack growth force the fp to be setup? Asking specifically ...
0
votes
2answers
283 views
Does mips branch delay slots propagates through successive branches?
I was playing around with branch delay slots. Tried that on spim.
j some
j a
j b
j c
j d
ori $9, $0, 13
some:
a:
b:
c:
d:
For my surprise it changed the $9 to 13.
So my question is can ...