Как я могу преобразовать целое число в символ в MIPS? - PullRequest
0 голосов
/ 24 марта 2019

Я хочу преобразовать целочисленное значение в символ, а затем распечатать этот символ как «символ».

# convert an word into bye and print it
.data
    integer: .word 1

.text
    la $a0, integer # load the address of 'integer' into $a0
    lw $t0, ($a0) # load the value stored in address
    addi $t0, $t0, 31 # convert digit to a character

    # print the character
    move $a0, $t0 # prepare the value for printing
    li $v0, 4 # syscall value for a character
    syscall

    # exit program
    li $v0, 10
    syscall

Вывод:

Assemble: assembling number_to_character.asm

Assemble: operation completed successfully.

Go: running number_to_character.asm

Error in number_to_character.asm line 13: Runtime exception at 0x00400018: 
address out of range 0x00000020

Go: execution terminated with errors.

Похоже, программыне работать.Возможно, из-за разницы в размере между целым числом (словом) и символом (байтом).

...