home *** CD-ROM | disk | FTP | other *** search
- @ template file for stub functions
- @ %L is replaced by the current library name
- @ %O1 and %O2 is replaced by an offset number
- @ %O2 is removed if not needed
- @ %N is replaced by the function name
- @
- @ any mov rx, #%O where %O > 255 will be expanded to
- @ mov rx, #%O & 255; orr rx, rx, #%O & ~255
-
- .text
-
- .global %N
- %N:
- mov ip, #%O1
- orr ip, ip, #%O2
- b ___jump_%L_jump
-