mips 汇编入门——helloworld

源码如下: hello.s

 

[vb] view plain copy
  1. #    text segment   
  2.     .text          
  3.     .globl main  
  4. main:               # execution starts here  
  5.     la $a0,str      # put string address into a0  
  6.     li $v0,4        # system call to print  
  7.     syscall         # out a string  
  8.     li $v0,10  
  9.     syscall         # exit  
  10. #data segment  
  11.     .data  
  12. str:    .asciiz "hello world/n"  
 

 

运行结果如下图所示:

 

mips 汇编入门——helloworld_第1张图片

 

欢迎转帖,请注明来自:See-See


你可能感兴趣的:(汇编,vb)