home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / djgpp / emu387 / crt0.s < prev    next >
Encoding:
Text File  |  1991-05-09  |  167 b   |  17 lines

  1.  
  2. /*
  3. **    Special version for emu387 - acts like subroutine call
  4. */
  5.  
  6.     .text
  7.  
  8.     .globl    start
  9. start:
  10.     jmp    _main
  11.  
  12.     .data
  13.  
  14.     .globl    _environ
  15. _environ:
  16.     .long    0
  17.