コンマで区切られた ASCII 数字の文字列を取り込み、ハーフワードに変換しようとしています。次に、それらを昇順で配列に配置します。ハーフワードを取得する方法は知っていますが、問題は昇順です。char を読み取るように行っているので、ヌルまたはコンマでない場合は変数に数字を格納し、コンマに達すると、2 つの ASCII 数字を 1 つのハーフワードに結合します (その後、配列に格納すると思いますが、どこに配置すればよいかわかりません。これはアセンブリにあります。
編集:これは私が持っているすべての変換コードです。最後に、重複が見つからない場合は loop_end1 に移動し、それを配列に追加します (ここで昇順のものを追加する必要があります)。重複が見つかった場合は loop_end2 に移動し、配列に入れません。文字列の終わりを意味する null に到達すると、完了します。すべての処理が完了すると、文字列の要素数から配列の要素数を差し引いて、削除された要素の数を求めます。ご協力いただきありがとうございます
L1:
mov a1, addrs #move the first char of string into 'a1'
sb fc, a1 #store the char in fc
cmp fc,0 #is the char null?
je done #if the char is null, youre done
jne L2 #if the char is not null goto L2
L2:
cmp fc,2C #is the char a comma?
jne L3
inc addrs
sub dige,dige,dige #make dige 0, the complicated way
jal L5 #comma has been found put the previous numbers in array
L3:
sub fc, fc,48 #turn to decimal from ASCII
cmp dige,1 #is this the second or first
jne L4
lb sd #holds second digit
sb sd,fc
add dige,dige,1
jal L1
L4:
lb fd #holds first digit
sb fd,fc
inc addrs
add dige,dige,1
L5:
cmp dige,2
jne L6
mov $t0,fd
sll fd,3 #this multipies the first digit by 2^3 (8). now add 2 more
add fd,fd,$t0
add fd,fd,$t0 #in total multiplies by 10 because fd*8+fd+fd=fd*10
add $t1,fd,sd
lh hw #holds halfword of number
sb hw,$t1
mov ecx,0
jal loop_start
L6:
lh hw
sb hw,fd
mov ecx,0 #inc counter to compare to array length
loop_start:
cmp ecx, ARRAY_LENGTH #does ecx equal the number of elem?
jge loop_end1
cmp hw,Array1[ecx*8]
add ecx,1
je loop_end2
jal loop_start
loop_end1:
mov [addra1],hw
add count,1
inc addra1
jal L1
loop_end2:
add count,1
jal L1
done:
sub count,count,ARRAY_LENGTH #subtracts array length from count to find number of elements eliminated