wiki:Makefile

Version 3 (modified by Mattia Monga, 8 years ago) ( diff )

--

Un piccolo progetto in cui make semplifica molto lo sviluppo.

Abbiamo 2 file sorgente:

  • sommaf.asm
section .text
global somma

somma:
  ; prologo
  push ebp
  mov ebp, esp

  mov eax, [ebp+8]
  add eax, [ebp+12]

  ; epilogo
  mov esp, ebp
  pop ebp
  ret
Note: See TracWiki for help on using the wiki.