Advertisement
LegoDrifter

MIPS PRimer 1 ( Bolje )

Apr 18th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. .data
  2. message: .asciiz "Vnesi broj."
  3. .text
  4. main:
  5.  
  6. li $v0, 4
  7. la $a0, message
  8.  
  9. li $v0, 5 #scanf od tipot integer
  10. syscall
  11. move $t0, $v0 #vrednosta sto ja stadovme vo v0 ja prefrlame vo t0
  12.  
  13. abs $t0,$t0 #najprosto naogja na absolutna vrednost....
  14.  
  15. li $v0, 1
  16. move $a0,$t0
  17. syscall
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement