home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / lib / mkshared / mkstubs.fn.s next >
Encoding:
Text File  |  1995-06-24  |  379 b   |  17 lines

  1. @ template file for stub functions
  2. @ %L is replaced by the current library name
  3. @ %O1 and %O2 is replaced by an offset number
  4. @     %O2 is removed if not needed
  5. @ %N is replaced by the function name
  6. @
  7. @ any mov rx, #%O where %O > 255 will be expanded to
  8. @ mov rx, #%O & 255; orr rx, rx, #%O & ~255
  9.  
  10.         .text
  11.  
  12.         .global    %N
  13. %N:
  14.         mov    ip, #%O1
  15.         orr    ip, ip, #%O2
  16.         b    ___jump_%L_jump
  17.