subject

Ihave the assembly for the max. can someone change the variables of it and make it min. i mean, the assembly for finding the min of the flaoting points.
.686
.model flat
.code
_max proc ; name of fucntion
start:
push ebp ; save caller frame pointer
mov ebp, esp ; establish current frame pointer
mov ebx, [ebp+8] ; store address of first array element into ebx
mov ecx, [ebp+12] ; store the size of array into ecx
xor edx, edx ; initialize loop counter edx to zero
fld dword ptr[ebx] ; load first array element arrary onto st(0)
inc edx ; increment loop counter in edx
loopmax:
fld dword ptr[ebx+edx*4] ; load next array element onto st(1)
fcom st(1) ; compare st(0) with st(1)
fstsw ax ; copy the status word containing the result to ax
fwait ; insure the previous instruction is completed
sahf ; transfer the condition codes to the cpu's flag register
ja looknext ; if st(0) > st(1) jump to looknext to continue with next array element
fcomp ; pop st(0) because new maximum is in st(1)
; after pop, the new max is again in st(0)
looknext:
inc edx ; increment counter in edx
cmp ecx, edx ; compare array size in ecx with loop counter in edx
jg loopmax ; if ecx > edx then jump to loopmax
pop ebp ; restore caller frame pointer
ret ; return contents of st(0)_max endp
end

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 05:00
Are special characters that allow you to search for multiple words at the same time.
Answers: 2
question
Computers and Technology, 22.06.2019 18:10
How can i delete permalinks from a word press site?
Answers: 1
question
Computers and Technology, 23.06.2019 16:00
An english teacher would like to divide 8 boys and 10 girls into groups, each with the same combination of boys and girls and nobody left out. what is the greatest number of groups that can be formed?
Answers: 2
question
Computers and Technology, 23.06.2019 20:30
If chris has a car liability insurance, what damage would he be covered for
Answers: 1
You know the right answer?
Ihave the assembly for the max. can someone change the variables of it and make it min. i mean, the...
Questions
question
Mathematics, 10.01.2020 19:31
question
Chemistry, 10.01.2020 19:31
Questions on the website: 13722363