This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.text | |
.globl inicio | |
inicio: | |
jal le_inteiro_do_teclado # chama função para ler | |
la $t7, 0($v0) # carrega o inteiro lido em $t7 | |
jal imprime_inteiro # manda imprimir o numero lido | |
j fim # encerra o programa | |