home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / EXAMP / STARTUP.SRC < prev   
Encoding:
Text File  |  1996-06-17  |  264 b   |  12 lines

  1. ;
  2. ; This startup file ignores things like what happens if you put pointers
  3. ; in the data segment.  It also ignores the applicable #pragma directives
  4. ;
  5.  
  6.     section startup
  7.     XREF DATA,STACKTOP,_main
  8. start:
  9.     move    #DATA,A5
  10.     move    #STACKTOP,A7
  11.     bsr    _main
  12.     bra    $