Home | History | Annotate | Download | only in tests
      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
      3 GLOBAL constant
      4 GLOBAL function
      5 
      6 constant EQU 48
      7 
      8 function:
      9 	sub	eax, constant
     10 	ret
     11