Advertisement
josacar

felicidades ASM MIPS R2000

Apr 24th, 2011
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $ cat felicidades.asm
  2. .data
  3. texto: .asciiz "Felicidades!\n";
  4.  
  5. .text
  6.  
  7. main:
  8. la $a0, texto
  9. li $v0, 4
  10. syscall
  11.  
  12. li $v0, 10
  13. syscall
  14.  
  15. $ spim -file felicidades.asm
  16. SPIM Version 8.0 of January 8, 2010
  17. Copyright 1990-2010, James R. Larus.
  18. All Rights Reserved.
  19. See the file README for a full copyright notice.
  20. Loaded: /usr/lib/spim/exceptions.s
  21. Felicidades!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement