Blame view

liens/constante.c 147 Bytes
6f450eb2   Pierre Cwik   ajout 23 mai
1
2
3
4
5
6
7
8
9
10
11
12
13
  
  void _start(void)
  {
  
  char *chaine = "salut";
  int i=0;
  
  while(chaine[i] != '\0') { i++; }
    
  __asm__ volatile("syscall" :: "a" (60), "D" (i) );
  
  
  }