home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / FALCON / CPX / PRINTER.TC / CPXSTART.S < prev    next >
Encoding:
Text File  |  2001-02-10  |  797 b   |  34 lines

  1. ; cpxstart.asm
  2. ;=============================================================================
  3. ; Startup file for CPXs
  4. ; Date: February 27, 1990
  5. ;
  6. ; format for mad mac:   mac cpxstart.asm
  7. ;
  8. ; The storage space for your variables is currently set to 10 words
  9. ; If you need more, well, change it.
  10. ; If your not using mad mac, then you can always type in
  11. ;   .dc.w 0 as many times as you need it...:-)
  12. ;
  13.  
  14.  
  15.     .globl        cpxstart
  16.     .globl        save_vars
  17.     .globl        cpx_init
  18.  
  19.     .text
  20.  
  21. cpxstart:
  22.          jmp cpx_init
  23.  
  24.     .data
  25.  
  26. save_vars:
  27.         .dc.w    0    ; Dot Matrix - 0, Daisy  - 1
  28.         .dc.w    0    ; B/W        - 0, Color  - 1
  29.         .dc.w    0    ; 1280       - 0, Epson  - 1
  30.         .dc.w    0    ; Draft      - 0, Final  - 1
  31.         .dc.w    0    ; Feed       - 0, Single - 1
  32.         .dc.w    0    ; Parallel   - 0, Serial - 1
  33.     .end
  34.