我正在上课,关于计算机如何在较低级别运行,主要是关于内存管理到目前为止。部分原因是学习使用PCSPIM模拟器为MIPS处理器编写汇编语言。
我刚刚完成了关于循环的任务。为此,我必须编写一个程序,提示用户输入一个数字并打印从1到该数字的数字。每10个字符打印一个新行字符。假设输入为正。我做的那部分没问题,程序运行正常。
作为奖励,我被要求将输出对齐到右对齐列。我很难过,我不知道怎么做。我可以用Java来解决这个问题,但我刚刚开始学习汇编的基础知识,并且在完成我在课堂上学到的所有内容后,我意识到我们还没有学会如何做到这一点。我之前有过这位教授,她喜欢这样做让我们思考,看看我们是否能在没有她帮助的情况下解决这个问题。
我曾考虑将所有结果放入数组并打印出来,但我不知道如何在Assembly中创建数组。我还考虑过使用Assembly等价的IF语句,但每次将新数字添加到数字时我都必须编写并测试一个数字,并且输入没有允许的最大数量。
如果有人能告诉我如何将输出打印到Right Justified Columns中,我将非常感激。到目前为止,这是我的代码:
###### Begin Text Section ######
.text
.globl __start
__start: # execution starts here
la $a0,prompt # load address of prompt into a0
li $v0,4 # load instruction number to display a string into v0
syscall # system call to print the prompt string
li $v0,5 # load call code number to read first integer -> v0
syscall # system call to read first integer and store in v0
move $t0,$v0 # move integer from v0 -> t0 for safe keeping
# t0 holds the Final Integer
addi $t1,1 # initialize t1 to 1
# t1 is the counter
addi $t2,1 # initialize t2 to 1
# t2 is the lineCounter
addi $t3,10 # initialize t3 to 10
# t3 is the Sentinel
la $a0,endl # load the new line character into a0
li $v0,4 # load the call code number to display the string into v0
syscall # system call to print the new line character
move $a0,$t1 # move t1 -> a0 for display
li $v0,1 # load call code number to display integer into v0
syscall # system call to print t1 as largest
la $a0,space # load address of prompt into a0
li $v0,4 # load instruction number to display a string into v0
syscall # system call to print the prompt string
WHILE: ble $t0,$t1,ENDWHILE # IF counter > final integer BREAK to ENDWHILE
add $t1,$t1,1 # increment counter
move $a0,$t1 # move t1 -> a0 for display
li $v0,1 # load call code number to display integer into v0
syscall # system call to print t1 as largest
la $a0,space # load address of prompt into a0
li $v0,4 # load instruction number to display a string into v0
syscall # system call to print the prompt string
add $t2,1 # increment lineCounter
beq $t2,$t3,NEWLINE # IF lineCounter = 10 BREAK to NEWLINE
j WHILE # go around the loop again
NEWLINE: la $a0,endl # display new line
li $v0,4
syscall
addi $t2,-10 # re-initialize t2 to 0
j WHILE # jump to WHILE
ENDWHILE: la $a0,endl # display new line
li $v0,4
syscall
li,$v0,10 #End Program
syscall
##### End Text Section #####
##### Begin Data Section ######
.data
prompt: .asciiz "Please enter a posetive integer: " # prompt for the Input
space: .asciiz " " # Space Character
endl: .asciiz "\n" # New Line Character
Example of output as the code is now:
1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
...92 93 94 95 96 97 98 99 100
Example of how output should look:
1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
... 92 93 94 95 96 97 98 99 100
答案 0 :(得分:0)
因此,任务是根据当前值的长度和最终值填充具有空间量的输出。例如。用户输入了1234
,也就是说,1
应填充3个额外的空格,512
一个空格,1024
保持不变。
从1开始并在循环中将其乘以10,直到计算循环迭代时结果大于输入值。迭代次数等于输入值的长度。我们将其表示为L。
嗯,天真和直接的方法是使用上面的方法获取当前值的长度并从L中减去它。但是,这是浪费资源,有一种更简单的方法。
你知道,你始终以1
开头,所以最初需要L-1个额外空格。你知道每个"里程碑" number,其中当前值的长度递增。所以这就是方法:
L-1
加载到负责跟踪额外空格数的寄存器10
加载到负责跟踪里程碑的注册簿中