Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
636 views

ELF File Format

I'm attempting to manually load the hexdump of an elf file that I compiled using g++ into a processor simulation I designed. There are 30 sections to a standard elf file and I am loading all 30 ...
3
votes
2answers
189 views

sample spim code

I found this sample spim code on the internet .data COUNT: .word 10 TEXT: .asciiz "The number is " EOL: .asciiz "\n" .text .globl main main: addiu $sp, $sp, -32 # ...
3
votes
3answers
3k views

Storing values in HI and LO registers of MIPS

I am writing certain code in MIPS and I've come to the point where the requirement is to store the result, temporarily, in HI and LO special registers (both are 8 bytes wide). These instructions are ...
2
votes
0answers
75 views

MIPS while loop error

I am having some trouble with the following mips code: li $t0, -1 li $t5, 0 countNumberofVariables: addi $t0, $t0, 1 beq $t0, $t8, endCount add $t1, $t0, $t9 ...
2
votes
0answers
253 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
1answer
151 views

Access MIPS Co-processor condition flag directly

I wish to access the value of the MIPS coprocessor 1 condition flag. For example c.eq.s $f4 $f6 move $t0 condflag1 #clearly illegal I understand that the following is possible: c.eq.s $f4 ...
2
votes
2answers
1k views

MIPS (or SPIM): Loading floating point numbers

I am working on a little mini compiler while trying to learn some MIPS here. Here's my issue: MIPS has an instruction li (load immediate) which would work like this li $5,100 which would load 100 ...
2
votes
2answers
2k views

C to MIPS translation

Trying to convert this c code into MIPS and run it in SPIM. int A[100], B[100]; for(i=1; i<100; 1++){ A[i] = A[i-1] + B[i]; } So far this is what I have. # comments are delimted by has ...
1
vote
0answers
55 views

Real Mode x86 simulator similar to SPIM?

I am looking for a Real Mode x86 simulator similar in principle to the MIPS32 simulator "SPIM". Ideally, it would also support 286 Protected Mode (32 bit Protected Mode is less important). Anyone ...
1
vote
1answer
191 views

MIPS Assembly - Accessing one character in a string

I am using something like SPIMS or MARS with syscall functions. I am reading in a string (and it works because I can print it out) as follows: li $v0, 8 la $a0, string li $a1, 256 syscall ...
1
vote
1answer
58 views

spim simulator pcspim : error setting value at an address

Hi I am using spim simulator pcspim and I am trying to set a value at an address using the set value option under the simulator menu. When I try to set a value which has an msb of 1 for ex. ...
1
vote
1answer
84 views

Expressing this statement in MIPS

I've just started on MIPS with SPIM simulator. Can someone help me converting this statement ? if(as>47 && as<58) function(); else continue; Thanx in advance. :)
1
vote
1answer
548 views

Mips how can I convert Character to binary?

My problem is getting 64 bit key from user. For this I need to get 16 characters as string which contains hexadecimal characters (123456789ABCDEF). I got string from user and I reached characters with ...
1
vote
1answer
285 views

Declaring more than one SPIM array causes a syntax error

Below is the beginning of a chunk of SPIM code: .data a: .space 20 b: .space 20 .text set_all: sw $ra,0($sp) li $t0,0 li $t1,10 ............ Unfortunately, the second array ...
0
votes
3answers
44 views

Understanding recursion with MIPS assembly language

I was in class and we have/are covering recursion in Assembly Language. I felt like I understood recursion, but the more people attempt to explain it to me, the more I feel distant from it. Anyways, ...
0
votes
0answers
18 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
1answer
164 views

Mips how to store user input string

I used to think I knew how to do this. But then I actually tried to do it. Here's the program I wrote but the Berkeley S*** simulator for mac said there was a syntax error on the last line. What did I ...
0
votes
1answer
216 views

Whats wrong with this MIPS/QtSPIM While Loop Code

The programs runs with expected output but with the errors below Code .data .text .globl main main: addi $t0, $t0, 0 # i = 0 addi $t2, $0, 10 # n = 10 j WhileCond # goto ...
0
votes
2answers
59 views

Spim Instruction division

[0x00400000] 0x3c011000 lui $1, 4096 ; 5: li $t0, 0x100000F4 [0x00400004] 0x342800f4 ori $8, $1, 244 [0x00400008] 0x8d100000 lw $16, 0($8) ; 6: lw $s0, ...
0
votes
2answers
69 views

What is the meaning of “<” and “>” in MIPS comments?

I have recently begun learning assembly via MIPS, and I noticed that for some reason, QtSpim removes anything inside comments and between angle brackets when showing the original source in the "Text" ...
0
votes
0answers
113 views

Show division result in MIPS

Hi I'm coding a small program in MIPS and I have this code li $v0, 2 div $t0,$t2,$t1 move $a0,$t0 syscall (it's not the full code, just the section handling division) Where $t1 is 2, $t2 is 9. ...
0
votes
0answers
181 views

Read from file, mips spim assembler

I'm trying to solve a problem working with mips spim assembler and got a fairly good grip of what to do but a bit of trouble with the how. The biggest part of my trouble is reading a file. The layout ...
0
votes
0answers
65 views

SPIM exception handler? Create a better one?

I'm using SPIM on linux and I'm not sure where it gets the exception handler file from (or how to change it to another file ). I need to create my own exception handler that will be custom coded. ...
0
votes
1answer
105 views

Mips Output Problem

li $s5, 2 add $a0, $s5, $0 li $v0, 4 syscall Why system out is (null) in spim ?
0
votes
1answer
1k views

Converting Decimal to Binary and Printing in MIPS

I'm writing a simple snippet of code for an assignment and I need to convert a decimal number to binary, octal, and hexadecimal. I have it working, but I realized afterwards that because of the ...
0
votes
1answer
187 views

Algorithmic Issue in MIPS

I'm rewriting my answer(s) to Project Euler questions in MIPS assembly, and I can't get this one to output the correct answer. I've gone over the code for the past hour, and I can't figure out what's ...
0
votes
1answer
313 views

Convert C++ Code to Assembly for SPIM

I'm having a lot of trouble getting my compiled assembly file working on SPIM. Basically I want to write a c++ file, and then generate a .s file that I can open in SPIM without error. This means ...