~z88dk-team/z88dk-pkg/trunk

« back to all changes in this revision

Viewing changes to libsrc/strings/strspn.asm

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-02-12 08:23:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080212082349-wgijt44scmgje90o
Tags: 1.7.ds1-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - build z88dk and z88dk-bin binary packages for lpia too
  - update Maintainer field as per spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; CALLER linkage for function pointers
 
2
 
 
3
XLIB strspn
 
4
LIB strspn_callee
 
5
XREF ASMDISP_STRSPN_CALLEE
 
6
 
 
7
.strspn
 
8
 
 
9
   pop bc
 
10
   pop de
 
11
   pop hl
 
12
   push hl
 
13
   push de
 
14
   push bc
 
15
   
 
16
   jp strspn_callee + ASMDISP_STRSPN_CALLEE
 
17