Questions tagged [qtspim]

QtSpim is a user interface built on the Qt UI framework for Spim, a self-contained simulator that runs MIPS32 programs.

QtSpim is a user interface built on the Qt UI framework for Spim, a self-contained simulator that runs MIPS32 programs.

http://spimsimulator.sourceforge.net/

287 questions
-1
votes
2 answers

Integer Implementation of Floating-Point Addition In MIPS

Abstract Your goal for this project is to implement software emulation of floating point addition for 32-bit (single-precision) floating point numbers in MIPs. Input/Output Your program will prompt the user for two floating point numbers. It…
user3526834
  • 11
  • 1
  • 3
-5
votes
1 answer

Substract in Mips

The problem appears when I wait for the result of the substraction to appear but instead it shows me 0. Not x-a as I hoped it will. .data strin: .asciiz "type two integers\n\n\n" strout: .asciiz "the result of the substract is:" a: .word 0 x:…
1 2 3
19
20