home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_03 / C_JS_108.ZIP / H / STAND3L.S < prev   
Text File  |  1995-07-13  |  1KB  |  29 lines

  1. *-------------------------------------------------------------------*
  2. * Standard JagOS 3 Download & Run parameters.                       *
  3. * ╜ Roine Stenberg 950702                                           *
  4. *-------------------------------------------------------------------*
  5. *    OUTPUT    i:\*.JAG
  6.  
  7. down    EQU    $5000            * Download adress in Jaguar.
  8. start    EQU    $5000            * Start adress in Jaguar.
  9.     OPT    D-            * No debugging
  10.  
  11.     dc.b    'JAGL'            * Magic to skip Devpac Header.
  12.                     * 'JAGL' to indicate that the
  13.                     * next command is a LONG.
  14.     dc.l    3            * JagOS 3 - Recive & Run.
  15.                     * NOTE that this MUST be a long
  16.                     * if 'JAGL' is specified.
  17.     dc.l    down            * Download adress.
  18.     dc.l    c_end-c_start        * Lenght of Jaguar Code.
  19.                     * A dc.l 0 are also possible
  20.     dc.l    start            * Start adress.
  21.     ORG    start            * Position dependent code.
  22.  
  23. *--------------------------------------------------------------------
  24. c_start                    * Jaguar code start.....
  25.  
  26.  
  27. c_end                    * Jaguar code end.
  28. *--------------------------------------------------------------------
  29.