aboutsummaryrefslogtreecommitdiff
path: root/examples/greet_from_library/Main.asm
blob: ff66ee3498c43736fa187de463537e1bc139164a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
global main
extern library_perform

section .text
main:
  call library_perform

  xor eax, eax
  add rsp, 8
  ret