home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_03 / C_JS_108.ZIP / H / STAND3.S < prev    next >
Text File  |  1995-08-18  |  906b  |  25 lines

  1. *-------------------------------------------------------------------*
  2. * Standard JagOS 3 Upload & Run parameters. And clears memory.    *
  3. * ╜ Roine Stenberg 950713                                           *
  4. *-------------------------------------------------------------------*
  5. *    OUTPUT    i:\*.JAG
  6.  
  7. down    EQU    $5000            * Upload adress in Jaguar.
  8. start    EQU    $5000            * Start adress in Jaguar.
  9.     OPT    D-            * No debugging
  10.  
  11.     dc.b    'JAGR'            * Magic to skip Devpac Header.
  12.     dc.w    3            * JagOS 3 - Recive & Run.
  13.     dc.l    down            * Upload adress.
  14.     dc.l    c_end-c_start        * Lenght of Jaguar Code.
  15.                     * A dc.l 0 are also possible
  16.     dc.l    start            * Start adress.
  17.     ORG    start            * Position dependent code.
  18.  
  19. *--------------------------------------------------------------------
  20. c_start                    * Jaguar code start.....
  21.  
  22.  
  23. c_end                    * Jaguar code end.
  24. *--------------------------------------------------------------------
  25.