I'm working on a program that uses bubble sort in order to sort a defined array in descending order. My code seems to loop 3 times, creating an incorrect result as well too, before stopping. This is in HCS12 assembly language.
RAMStart EQU $0800
ROMStart EQU $4000
N EQU 8
; absolute address to place my code/constant data
; variable/data section
ORG RAMStart
; Insert here your data definition.
Samples DC.B $12,$CD,$0F,$3E,$E6,$1B,$F6,$9B
; code section
ORG ROMStart
Entry:
_Startup:
; code section
ORG ROMStart
loop
ldx #N-1
leay x
loop2
lds #Samples
tfr y,b
tfr x,a
sba
exg a,b
ldab sp
addb #1
ldaa b,sp
cba
movb 0,sp , y
staa 0,sp
dbne y,loop2
RTS
First:
You have:
What you want to do instead is something like:
Second:
You test
a
vs.b
(viacba
) but don't do anything with the result of the comparison. After thecba
you need to conditionally branch around the swap code — skip around the two stores that accomplish the swap. The way you choose to skip around determines whether your are sorting increasing or decreasing.Third:
The swap you want to do is to store
b
wherea
came from (in the above) and storea
whereb
came from (in the above).You have:
And I think you want something more like (order for this one is unimportant):
Fourth:
You are looping enough — as evidenced by the fact that the label
loop
is never referred to by a conditional branch instruction. So, this code is incomplete.Not sure but it looks like your swap code is wiping out
y
, the loop counter. Try my suggestions.