MIPS is a RISC instruction set architecture (ISA). It is commonly used in embedded devices such as set top boxes and networking gear. Many university-level computer architecture classes use the MIPS ISA due to its relative simplicity.

learn more… | top users | synonyms

0
votes
0answers
16 views

MIPS Assembly Language, with MARS

new here, and new to assembly. I am working on my first assignment and it seems simple but i still lack the understanding of MIPS. My current problem is trying to read the prompts and print the ...
0
votes
1answer
12 views

MIPS jump to label, and PC increment

I have the following MIPS assembly code loop: add $t1,$t1,$t1 j loop and I know that loop is located at 0x1FFF FFF8 now, I am not certain that the program will work okay... ...
-1
votes
1answer
33 views

Input three numbers return the sum of the two major

I started to programming in MIPS ASSEMBLY . I need to complete this example but I don't understand why print wrong result: Excuse me if not all comments are in English but I'm Italian and I don't ...
0
votes
1answer
16 views

Trouble building a MIPS compatible C static library

I'm trying to build a C static library (.a) that is compatible with a MIPS processor (I'm working in an embedded system). To do so I tried to execute the following commands (obs: I'm using the ...
1
vote
1answer
29 views

IEEE 754 in MIPS w/o FPU

for a homework assignment I'm supposed to multiply a single precision IEEE 754 number stored in the data segment with 4 and store the result back. I perfectly understand how IEEE 754 works and how ...
0
votes
2answers
44 views

Is it possible to share a register between threads?

I know that when the OS/Hardware switch between the execution of different threads it manage the store/restore the context of each thread, however I do not know many of the details. My question is: ...
0
votes
1answer
47 views

MIPS assembly - Reading from a file with hexadecimal values

here is my question. I want to read from a txt/dat file using MIPS assembly. Problem is that everyting in the file is hexadecimal such as 0x54ebcda7. When i try to read and load this into a register, ...
0
votes
1answer
13 views

Mips div.s syntax error

I am using QtSpim 9.9.1 to write my Computer Architecture course homework i had a syntax error when use div.s operator but it's OK when I use div. Another error appears when try to get float from ...
1
vote
1answer
18 views

MIPS assembly calculating hypotenuse

I have a MIPS program to compute the hypotenuse from two integers. However the program prints some weird number not the actual result, my best guess is there is something wrong with the square root ...
1
vote
1answer
29 views

Try to print strings in assembler

I am trying to print a few string in MIPS, but when i try print the first message, program prints all of them. .data first_msg: .ascii "Podaj pierwsza liczbe: " second_msg: .ascii "Podaj druga ...
1
vote
2answers
19 views

access file in mips using mars tool

I'm trying to do some access on file using mips instruction. I want to read file line by line not all of the file at a time so this code(1) does not work. Also I want to write to the file and not ...
0
votes
2answers
23 views

Difference between add and addu

I am confused about the difference between add and addu. The MIPS instruction reference says: add (with overflow) add unsigned (no overflow) My understanding is to use add with signed operands ...
0
votes
1answer
37 views

MIPS getting around using pseudo-instructions, What is going wrong?

My question is about how I'm supposed to get around the use of pseudo-instructions such as la and li. Many Internet sources just use pseudo-instructions anyway, which confuses me to some extent. Part ...
0
votes
2answers
33 views

SPIM equivalent for x86 assembly language

Having learned MIPS, it was super helpful to write simple code and testing it out with SPIM. Being able to see all the registers and stepping through the code really helped me understand what each ...
-2
votes
0answers
15 views

Determining if a number is less than or equal to zero by hardware in Mips [closed]

I have a trouble on my Mips project given by my professor. I'm trying to draw a single cycle datapath, which includes BLEZ instruction(branch when $rs<=0). The trouble is, i can determine if a ...
0
votes
1answer
27 views

Convert Integer to Double in MIPS

I want to divide two values that are in $tn registers. I have to divide these two values to get a double result but the function div only returns the integer part of that division can anyone help ...
0
votes
0answers
30 views

Cross Compiling GLib for MIPS results in “No iconv() implementation” configure error

I'm trying to cross-compile GLib 2.37.0 for a MIPS system by following the directions here. I have a mips.cache file with the following contents: glib_cv_stack_grows=no glib_cv_uscore=no ...
-9
votes
1answer
46 views

c to mips assembly convert [closed]

Translate the following function in assembly mips int c = 0; count_letters(char str[], int str_len, char c) { int count = 0; for (int i = 0 ; i < str_len ; ++ i) { if (str[i] == c) ...
0
votes
1answer
23 views

MIPS Print String that was red without BREAKS

.data: str2: .space 20 #read string la $a0,str2 li $a1,20 li $v0,8 syscall #print string la $a0, str2 li $v0, 4 syscall #print string la $a0, str2 li $v0, 4 syscall The ...
0
votes
1answer
37 views

create an array of integer from 0 to 255 in MIPS assembly

Hi I want to create an array containing integers from 0 to 255 using a loop to store those integers into the array in MIPS assembly. Im new in assembly Thanks
0
votes
1answer
41 views

MIPS recursion: How to compute end result from stack

My task is to implement egyptian multiplication in MIPS assembler recursively. I think I understood most of the relevant stuff, but I just can't get behind one thing: How is the end result computed? ...
0
votes
0answers
28 views

Cant compile GDB Server

Im trying to cross-compile gdb server for a mips arch with my vendor toolchain (im using a uClinux distribution). ./configure --host=mips-linux-uclibc ...
0
votes
2answers
70 views

mips assembly: understanding recursion

so I have this code which computes the factorial (in general) but in this example it computes the factorial of 10 .data 0x10008000 .word 10 .word 1 .word 0 .ascii "The factorial ...
0
votes
1answer
35 views

How to print an array at the WinMips64?

How can I print an array in Mips64? I've succeeded in printing the array in QtSPIM (MIPS32), with this code: .data array: .word 10 20 30 40 50 .text #load base address of array la $t1,array ...
-7
votes
0answers
29 views

can someone add some comments for this mips code? [closed]

I find some useful code online, but i don't really understand it without comments, can someone add comments for me so i can have a better understanding. the code is about power recursive this is the ...
1
vote
0answers
20 views

Using GNU ld, how can I force the address of a specific (external) symbol without getting a “relocation truncated” error?

I have two functions, a() and b(), that both have specific, fixed load/run-time addresses. I am compiling a() myself, while b() is already provided (e.g. in ROM). The file a.c is as follows: extern ...
0
votes
1answer
45 views

MIPS 3000 assembly, load and print 32-bit unsigned integer

My program has to accept an input between between 0 and 2^32 or 4,294,967,295. Which bit-wise 32 bytes should be able to do, but i'm overflowing into the negatives because i'm not sure how to make ...
1
vote
0answers
33 views

Search a binary tree in MIPS, really need assistance,

I need to search a binary tree in MIPS for a term project. The code I have so. which he had a grad student type up so I don't know how good it is, far is : text .globl __start __start: la $a0, ...
1
vote
0answers
49 views

Write to file from code segment in MIPS

In MIPS assembly I should/have wrote program that reads whole code segment and writes in the file, in another words copies itself into object file. The problem is that it can't access code segment. As ...
1
vote
0answers
18 views

MIPS MIDI Player: problems with playback and skip

I have a couple of questions about my group project. The first question is regarding playback of a MIDI file. Right now our program can playback a type 0 file with about 75% accuracy (if you can even ...
0
votes
2answers
33 views

Mips programming jump problems

Supposed to count number of R, I, and J instructions in the code starting from the first line in main. I have updated the code to all suggestions but results do not seem correct still. :( EDIT: ...
0
votes
0answers
29 views

MIPS Assembly Programming assistance please

This is the current code I have, I am a new MIPS programming student and am having slight trouble with a program I am trying to get to work. I need to detect the number of I, J, and R type ...
1
vote
1answer
37 views

Why the program is showing always the same string? [+MIPS]

I need to save a data that contains: name, id and rating. So the insert command is kind this one: addi $sp, $sp, -12 li $v0,8 # take in input la $a0, buffer # load byte space into ...
1
vote
2answers
41 views

assembler MIPS, Mars strange error

In Mars(the idle for the MIPS) I found really strange errors. the sample code is like this .text .globl main main : la $a0, msg li $v0, 4 syscall .data msg: .asciiz "Hello World" and ...
0
votes
0answers
44 views

Tower of Hanoi in MIPS

Trying to turn this in to a program where I can enter the number of disk/rings for it. I got the number of rings the computer sees to work, but the output isn't right. IF I input exactly 3 it works ...
0
votes
1answer
39 views

displaying the factorial of each value of the index of a loop does not work. MIPS

I am trying to display the factorial of the current value of the index of a loop in MIPS but, my loop does not work at all. It keeps freezing every time I run the code. Let say I have a for loop such ...
0
votes
0answers
38 views

How many dynamic instructions executed in this code [closed]

(THIS IS NOT A HOMEWORK QUESTION) Consider the following code: a1=99 Loop: a1=a1-1 branch a1>0, Loop halt On execution of above code, how many dynamic instructions are executed?
0
votes
1answer
27 views

Problems parsing and printing integers with MIPS

I'm doing a homework assignment where I need to calculate a parenthesized math problem using the runtime stack in MIPS and I've hit a bit of a snag: I've gotten to the point where I'm trying to parse ...
0
votes
1answer
42 views

MIPS label addressing?

This is all related, and I tried to piece it all together as logically as I could, so please bear with me. I'm really confused as to how to properly address labels. For example, in the following bit ...
0
votes
0answers
42 views

blt bgt with assembly program

Ok so im in the first portions of writing a assembly program and am having problems with the blt, blg commands. .data MESSAGE_01: .asciiz "Enter a number between 0 through 4,296,967,295): " ...
0
votes
1answer
26 views

Strings from input, where they should be stored, dynamic or static data?

I'm learning the basis of assembly language using MIPS and the MARS simulator. The title encloses my question, but I'll try to extend it with an example. Suppose we want to read a string from the ...
0
votes
1answer
34 views

MIPS with Mars how to read values after pressing enter?

How could i read values so i can store them in memory after? I need to get the user to input values and then press enter so i can get those values and work with them. Thank you
1
vote
2answers
73 views

How to determine maximum speed of cpu in linux (MIPS architecture) [closed]

i want to determine maximum speed of cpu in MHz with linux operating system and MIPS hardware. With command cat /proc/cpuinfo it results in BogoMIPS=1000.00. And `cat ...
1
vote
1answer
52 views

Normalizing a significand in MIPS

I'm trying to figure out how to normalize a significand in MIPS when doing floating point addition. Say you have 0.001*2^-1. In this instance, to normalize you would have to shift the significand ...
0
votes
1answer
32 views

Exception encountered when trying to display the length of a string given by a user. MIPS

I am trying to compute the length of a string given by a user. Every time I try to run the code, I get the message "Exception occurred at PC=(a certain address) followed by the message :"Bad address ...
1
vote
0answers
71 views

thread died in the pthread_mutex_lock with SIGILL signal

I'm developing an project on an embedded linux OS(uclinux, mips CPU), It crashed occasionally. When I try to check coredump with gdb, I can see that it received a SIGILL signal. Sometime I can see ...
1
vote
0answers
24 views

MIPS Minimun Needed Memory Space

Which space minimum memory required to run the program whose portion is presented below and which runtime on a MIPS of 5 pipeline stages, 2 nanoseconds per stage for fixed-point operations. In ...
0
votes
1answer
75 views

MIPS how to store user input and print it out

what i should do for the problem is, i need to store those value, and print out a matrix, user is asking to input the number of rows, columns, and the value of elements , right now i don't even know ...
0
votes
1answer
41 views

Achieving indirect adressing while only using absolute(direct) adressing

For example, how can I achieve something like this: lw RegisterDestination, (RegisterSource) with absolute addressing? Thanks a lot.
1
vote
0answers
89 views

Dynamic memory allocation and deallocation MIPS

MIPS code for dynamic allocation of memory. I need to write a main program that keeps on waiting in a loop for user’s request through console for allocation/deallocation of memory of a size for a ...

1 2 3 4 5 24