GAS Bubblesort

Publicado por Perfil removido (última atualização em 16/08/2011)

[ Hits: 4.877 ]

Download bubblesort.s




Algoritmo de ordenação bubblesort ordenando uma string.

  



Esconder código-fonte

.section .data

    vetor: .ascii "92ASOCOMCDOKAapijsoaijs8373Ewerton Daniel de Lima\n"

.section .text
_start:

movl $4, %eax
movl $1, %ebx
movl $vetor, %ecx
movl $50, %edx
  
int $0x80
 
loopExt:
movl $vetor, %edi
movl $48, %ecx

movl $0,  %edx

   loopInt:
   dec %ecx
   movb (%edi), %eax
   inc %edi
   movb (%edi), %ebx

   cmp %eax, %ebx
   jnl noChange

   movl $1, %edx
   movb %eax, (%edi)
   dec %edi
   movb %ebx, (%edi)
   inc %edi

noChange:
cmp $0, %ecx
jne loopInt
cmp $0, %edx
jne loopExt


movl $4, %eax
movl $1, %ebx
movl $vetor, %ecx
movl $50, %edx
int $0x80
 
movl $1, %eax
movl $0, %ebx
int $0x80
#@

Scripts recomendados

Escrita de um número em octal na tela em Assembly Puro para Linux 64 bits (GNU Assembler)

Fatorial de N em Assembly

Hora do sistema

"Clear Screen" para Linux x86 com Inline Assembly (embutido no código) em C

"Clear Screen" para Linux 64 bits em Assembly Puro (GNU Assembly)


  

Comentários

Nenhum comentário foi encontrado.


Contribuir com comentário




Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts