home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** Special version for emu387 - acts like subroutine call
- */
-
- .text
-
- .globl start
- start:
- movl %esi,___pid
- movl %edi,___transfer_buffer
-
- pusha
- call _main
- popa
- ret
-
- .data
-
- .globl _environ
- _environ:
- .long 0
-
- .globl ___pid
- ___pid:
- .long 42
-
- .globl ___transfer_buffer
- ___transfer_buffer:
- .long 0
-
-