$ cat test.s
.globl _start
.text
_start:
addl $4, %esp
1: jmp 1b
$ as test.s -o test.o
$ ld test.o -o test