我正在尝试获取用户给定的数字,然后将该数字转换为字母表中的某个字母。前任。1 = 一个
.data
Prompt1: .asciiz "Enter the value of n here: "
Prompt2: .asciiz "The Letter is: "
Prompt3: .asciiz "?"
.globl main
.text
main:
li $v0, 4
la $a0, Prompt1
syscall
li $v0, 5
syscall
blez $v0, end
li $t1, 64
add $a0, $t1, $v0
syscall
li $v0, 4
la $a0, Prompt2
syscall
li $v0, 1
move $a0, $t0
syscall
end:
li $v0, 4
la $a0, Prompt3
syscall
li $v0, 10
syscall
任何帮助将不胜感激