/* * This program just executes system call pause. * * gcc -nostartfiles -nodefaultlibs -nostdlib -o pause pause.s * * Written by Dmitry V. Levin and placed in the public domain. */ .globl _start _start: movl $29,%eax # _NR_pause int $0x80 xorl %eax,%eax ret