.global bump _start: mov $0x55, %ebx mov $1, %eax int $0x80 _init: ret _fini: ret bump: incl (%edi) /* increment what's at top of data stack */ ret