可以使用MARS来编汇编,MARS是一个用java编的IDE,它是一个模拟环境.

样例:重要的句子输出三遍

.data
   str: .asciiz "weidiao is great\n"
.text
j main
f:
   la $a0,str
   li $v0,
   syscall
   jr $ra
main:
   li $t1,
   li $t2,3
loop:
   bgt $t1,$t2,over
   addi $t1,$t1,
   jal f
   j loop

   syscall

指令文档:链接

下面程序为一个四则运算程序,学习汇编就是要大量的阅读实例.实例学习在编程技术中至关重要.

    #simple example :a small calculater’
    .text                       # text section
    .globl main                 # call main by SPIM
    main:
        la $t0, value
        #t0 is the address of the value
                  # load address "value" into $t0
        la $a0,msg0
        li $v0,4
        syscall             #print "please choose the operation:"  

        li  $v0, 5
        syscall
        sw  $v0, 8($t0)  #operation is stored to t0+8---the second byte

        la $a0,msg1  #v0 controls the syscall.a0 controls the output_data;
        li $v0,4
        syscall             #print "first num:"  

        li  $v0, 5    #load integer 5 to v0,this is the read operation.
        syscall
        sw  $v0, 0($t0)  #store $v0

        la $a0,msg2
        li $v0,4
        syscall             #print " second num:"  

        li  $v0, 5
        syscall
        sw  $v0, 4($t0)         #read the other num   

        la $a0,newline
        li $v0,4
        syscall             #print "/n"  

        lw $t1, 0($t0)          # load the first num
        lw $t2, 4($t0)          # load the second num
        lw $t3, 8($t0)          # load the operation  

        beq $t3,1,addOp         # if +
        beq $t3,2,subOp         # if -
        beq $t3,3,mulOp         # if *
        beq $t3,4,divOp         # if /  

    addOp:
        add $t4, $t1, $t2       # $t1 + $t2 = $t4
        sw $t4, 12($t0)         #
        la $t5,addFlag
        j printResult
    subOp:
        sub $t4, $t1, $t2       # $t1 - $t2 = $t4
        sw $t4, 12($t0)
        la $t5,subFlag
        j printResult
    mulOp:
        mul $t4, $t1, $t2       # $t1 * $t2 = $t4
        sw $t4, 12($t0)
        la $t5,mulFlag
        j printResult
    divOp:
        div $t4, $t1, $t2       # $t1 / $t2 = $t4
        sw $t4, 12($t0)
        la $t5,divFlag
        j printResult  

    printResult:
        lw $a0,0($t0)
        li $v0,1
        syscall             #read first number  

        la $a0,0($t5)
        li $v0,4
        syscall             #print opflag  

        lw $a0,4($t0)
        li $v0,1
        syscall             #print second number  

        la $a0,equalStr
        li $v0,4
        syscall             #print " = "  

        lw $a0,12($t0)
        li $v0,1
        syscall             # print sum result
        j exit  

    exit:
        la $a0,newline
        li $v0,4
        syscall             #print " /n "  

        li $v0,10
        syscall             # exit
    # data section
    .data
    value:  .word 0, 0, 0 ,0 ,0     # 0: first num ,4 : second num , 8 : operation , 12:result
    msg0        :   .asciiz " please choose the operation(1~4):/n/t/t1 : +,addition /n/t/t2 : -,subtracter/n/t/t3 : * multiplication /n/t/t4 : /,division/n"
    msg1        :   .asciiz "first num:"
    msg2        :   .asciiz "second num:"
    addFlag     :   .asciiz " + "
    subFlag     :   .asciiz " - "
    mulFlag     :   .asciiz " * "
    divFlag     :   .asciiz " / "
    equalStr    :   .asciiz " = "
    newline     :   .asciiz "/n===============================/n"   

样例:打印九九乘法表

.data
  op :.asciiz "*"
  eq:.asciiz "="
  line:.asciiz "\n"
  space:.asciiz " "
.text
  j main
  print:
    move $a0,$t1
    li $v0,
    syscall

    la $a0,op
    li $v0,
    syscall

    move $a0,$t2
    li $v0,
    syscall

    la $a0,eq
    li $v0,
    syscall

    mult $t1,$t2
    mflo $a0
    li $v0,
    syscall

    la $a0,space
    li $v0,
    syscall

    blt $t2,$t1,ret
    la $a0,line
    syscall

    ret:
    jr $ra
  main:
    li $t1,
    for1:
      addi $t1,$t1,
      bgt $t1,,for1_out
      li $t2,
      for2:
        addi $t2,$t2,
        bgt $t2,$t1,for1
        jal print
        j for2
      j for1
    for1_out:
      li $v0,
      syscall

learn mips的更多相关文章

  1. Atitit learn by need 需要的时候学与预先学习知识图谱路线图

    Atitit learn by need 需要的时候学与预先学习知识图谱路线图 1. 体系化是什么 架构 知识图谱路线图思维导图的重要性11.1. 体系就是架构21.2. 只见树木不见森林21.3. ...

  2. Python 爬取所有51VOA网站的Learn a words文本及mp3音频

    Python 爬取所有51VOA网站的Learn a words文本及mp3音频 #!/usr/bin/env python # -*- coding: utf-8 -*- #Python 爬取所有5 ...

  3. ARM、Intel、MIPS处理器啥区别?看完全懂了

    安卓支持三类处理器(CPU):ARM.Intel和MIPS.ARM无疑被使用得最为广泛.Intel因为普及于台式机和服务器而被人们所熟知,然而对移动行业影响力相对较小.MIPS在32位和64位嵌入式领 ...

  4. TLB初始化 Missing Handler,MIPS R3K mips_init_tlb

    #include <mips/r3kc0.h> LEAF(mips_init_tlb) mfc0 t0, C0_ENTRYHI # 保存ASID mtc0 zero, C0_ENTRYLO ...

  5. [转载]VIM 教程:Learn Vim Progressively

    文章来源:http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/   Learn Vim Progressively   TL ...

  6. some tips learn from work experience

    1.you can't avoid office politics 2.you'll never have a job which you "can't quit" - if yo ...

  7. MIPS ABI n32意味着什么?

    ABI是应用程序二进制接口的简称,用于标识处理器的工作模式及规范目标文件的编码格式. MIPS指令集架构自MIPS3起正式支持64位工作模式,故编码可以遵从o32(o意思是old).n32(n意思是n ...

  8. Java-集合(没做出来)第四题 (List)写一个函数reverseList,该函数能够接受一个List,然后把该List 倒序排列。 例如: List list = new ArrayList(); list.add(“Hello”); list.add(“World”); list.add(“Learn”); //此时list 为Hello World Learn reverseL

    没做出来 第四题 (List)写一个函数reverseList,该函数能够接受一个List,然后把该List 倒序排列. 例如: List list = new ArrayList(); list.a ...

  9. Learn RxJava

    Learn RxJava http://reactivex.io/documentation/operators.html https://github.com/ReactiveX/RxJava/wi ...

随机推荐

  1. 通过API执行AutoCAD命令来…

    大家知道AutoCAD功能丰富,而更可贵的是,这么多丰富的功能背后都有一个命令,有些东西,直接用API调用写起来可能很费劲或者无法实现,可如果能用命令的话却很简单,这时候我们就可以通过API来调用Au ...

  2. Ubuntu14.04 Django Mysql安装部署全过程

    Ubuntu14.04 Django Mysql安装部署全过程   一.简要步骤.(阿里云Ubuntu14.04) Python安装 Django Mysql的安装与配置 记录一下我的部署过程,也方便 ...

  3. php关键词替换的类(避免重复替换,保留与还原原始链接)

    转载:http://www.169it.com/blog_article/601549531.html 本节主要内容:一个关键词替换的类 主要可以用于关键词过滤,或关键词查找替换方面. 实现过程分析: ...

  4. 锋友分享:国行和非国行iPhone的送修需知

    锋友 hfln0829 分享了一些关于苹果 iPhone 售后服务的注意事项以及有可能的维修方式.他表示,无论是国行还是港版送修,都必须关闭查找我的 iPhone 这个功能,如果你关闭不了,售后不会受 ...

  5. CLR简介(一)

    什么是通用语言运行时(CLR),简单来讲: CLR是一个支持多种编程语言及多语言互操作,完整的高级虚拟机. 有点拗口,而且不是很有启发性,但上面的文字是将又大又复杂的CLR的功能归类以便容易理解的第一 ...

  6. asp.net signalR 专题—— 第四篇 模拟RPC模式的Hub操作

    在之前的文章中,我们使用的都是持久连接,但是使用持久连接的话,这种模拟socket的形式使用起来还是很不方便的,比如只有一个唯一的 OnReceived方法来处理业务逻辑,如下图: protected ...

  7. 监控mysql各种选项

    安装mysql之后,需要对mysql服务进行监控.   nagios开源自带的check_mysql 对 mysql 的slave 机监控倒是不错.但是对数据库主机监控就略显不足了.   使用一个监控 ...

  8. mysql sum 和 count 函数 合并使用

    SELECT sum(start) as total, count(start) as rows FROM table where....

  9. [django]django+post+ajax+highcharts使用方法

    直接代码展示: view.py文件代码 from django.http import JsonResponse #django ajax部分 def ajax_kchart(request): ti ...

  10. linux下遇见mysql启动报2002错误解决办法

    前言:目前问题解决了,但是仍不知道是什么原因造成的,在出现问题前安装uWSGI后,mysql就出现这个问题的,哪位大侠说说这是怎么回事? 正文:Linux 下 Mysql error 2002 错误解 ...