1; Note: you should be able to link elfreloc.o with elfglobal.o to make a
2; program that calls function with eax=constant, thus exiting err=0
3GLOBAL constant
4GLOBAL function
5
6constant EQU 48
7
8function:
9	sub	eax, constant
10	ret
11