LINUX.ORG.RU

> В двух словах какая разница между ними

Почему бы не почитать мануал к тому и другому.

paxac
()
Ответ на: комментарий от paxac

Вот кусок текста на насме :	

; Text segment begins
section .text

   global _start

; Program entry point
   _start:

; Put the code number for system call
      mov   eax, 1 

; Return value 
      mov   ebx, 2

; Call the OS
      int   80h

и он же на гасе :
	

# Text segment begins
.section .text

   .globl _start

# Program entry point
   _start:

# Put the code number for system call
      movl  $1, %eax

/* Return value */
      movl  $2, %ebx

# Call the OS
      int   $0x80



http://www.ibm.com/developerworks/library/l-gas-nasm.html

kto_tama ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.