home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / GEOSApps / RPN64-SRC.SFX / rpnhdr (.txt) < prev    next >
GEOS ConVerT  |  1990-02-12  |  2KB  |  40 lines

  1. RPNHdr
  2. PRG formatted GEOS file V1.0
  3. Star NX-10
  4. - RPNroutines
  5. BLASTER'S CONVERTER V2.5
  6. RPNram
  7. RPNscreen
  8. Write Image V2.0
  9. geoWrite    V1.1
  10. Header file for RPN64.
  11. ;************************************************************************
  12. ;        RPNHdr
  13. ;    Header block for RPN 64
  14. ;************************************************************************
  15. .noeqin            ;during assembler's first pass.
  16. @.include    geosSym    
  17.     ;get GEOS definitions
  18. .eqin
  19.     .header        ;start of header section
  20.     .word    0    ;first two bytes are always zero
  21.     .byte    3        ;width in bytes
  22.     .byte    21    ;and height in scanlines of:
  23. @    .byte    $80 | USR    ;Commodore file type, with bit 7 set.
  24.     .byte    DESK_ACC    ;Geos file type
  25.     .byte    SEQUENTIAL    ;Geos file structure type
  26.     .word    DAStart    ;start address of program (where to load to)
  27.     .word    DAEnd        ;end address (VERY IMPORTANT)
  28.     .word    DAStart    ;init address of program (where to JMP to)
  29.     .byte    "RPN 64      V1.0",0,0,0,%10000000
  30.             ;permanent filename: 12 characters,
  31.             ;followed by 4 character version number,
  32.             ;followed by 3 zeroes,
  33.             ;followed flag indicating this WON'T run under GEOS 128
  34.     .byte    "Robert A. Knop Jr. ",0
  35.             ;twenty character author name
  36.     ;end of header section which is checked for accuracy
  37.     .block    160-117    ;skip 43 bytes...
  38.     .byte    "RPN multi-function calculatior",0
  39.     .endh
  40.