English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

sort (int *list,int len){
for(i=len;i>1;i--)
for(j=0;j if(list[j]>list[j+1]){
tmp=list[j];
list[j]=list[j+1];
list[j+1]=tmp;
}
}

2007-11-04 06:21:55 · 2 answers · asked by doseRyo 1 in Computers & Internet Programming & Design

i understand that i need to convert it to an .exe but i don't even know how to start the pseudo code., but isn't there anyone who can assist me??

2007-11-04 11:46:36 · update #1

2 answers

Dude. You need to get a good book on assembly code and start loading values into registers and branching. You can find tons of code examples online via Google and might be able to find some assembly code to do a basic sort such as the one you coded. I wrote a merge sort program in x86 assembly a while ago so I know it is possible! :) Cheers!

2007-11-04 06:26:32 · answer #1 · answered by chutbun 2 · 0 0

make it an exe.
Then assemler program to see assemler codes

2007-11-04 06:26:39 · answer #2 · answered by iyiogrenci 6 · 0 0

fedest.com, questions and answers