Advertisement
Dany1858

mips: hello world

Mar 17th, 2018
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #https://www.youtube.com/playlist?list=PL5b07qlmA3P6zUdDf-o97ddfpvPFuNa5A
  2.  
  3. .data
  4.     myMex: .asciiz "hello world \n"
  5.  
  6. .text
  7.     li $v0, 4
  8.     la $a0, myMex
  9.     syscall
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement