2
我真的需要這個幫助。我正在嘗試創建一個將所有小寫轉換爲上部的函數。 例如:「大家好!」 - >「大家好MIPS:小寫字母
這是我迄今爲止(我知道這是不是很多,但我只是不知道如何從搬到這裏,一直試圖小時)
to_upper:
#PSEUDOCODE:
# load byte
# send to the ASCII-function
# check if the ASCII is a upper or lower
# store/save is somewhere - if upper
# if lower, subtract 20 in hexadecimal and then store it together with the other upper
# print back
#### MY CODE:
la $t0, STR_str
j check_if_upper
check_if_upper:
lb $t1, 0($t0)
ble $t1, 96, is_upper
j is_lower
is_upper:
is_lower:
exit_to_upper:
jr $ra
完美太謝謝你了。!d – Aewend