~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to packages/extra/hermes/i386/x86pscpy.as

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
.globl _CopyX86p_4byte_S
 
5
.globl _CopyX86p_3byte_S
 
6
.globl _CopyX86p_2byte_S
 
7
.globl _CopyX86p_1byte_S
 
8
 
 
9
.extern _x86return
 
10
 
 
11
 
 
12
.text
 
13
 
 
14
## _Copy*
 
15
## Paramters:
 
16
##   ESI = source 
 
17
##   EDI = dest
 
18
##   ECX = amount (NOT 0!!! (the _ConvertX86 routine checks for that though))
 
19
## Destroys:
 
20
##   EAX, EBX, EDX
 
21
 
 
22
_CopyX86p_4byte_S: 
 
23
 
 
24
 
 
25
        jmp _x86return_S
 
26
 
 
27
 
 
28
_CopyX86p_3byte_S: 
 
29
 
 
30
        jmp _x86return_S
 
31
 
 
32
 
 
33
 
 
34
_CopyX86p_2byte_S: 
 
35
 
 
36
        jmp _x86return_S
 
37
 
 
38
_CopyX86p_1byte_S: 
 
39
 
 
40
        jmp _x86return_S
 
41
 
 
42