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

  1. *-------------------------------------------------------------------*
  2. * Standard JagOS 2 Upload & 7 Run parameters.                       *
  3. * ╜ Roine Stenberg 950420                                           *
  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    2            * JagOS 2 - Recive.
  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.     ORG    start            * Position dependent code.
  17.  
  18. *--------------------------------------------------------------------
  19. c_start                    * Jaguar code start.....
  20.  
  21.  
  22.     EVEN                * Important for JagOS 2 call.
  23. c_end                    * Jaguar code end.
  24. *--------------------------------------------------------------------
  25. c_run    dc.w    7            * JagOS 7 - Run program.
  26.     dc.l    start            * Start adress.
  27.