]> git.sur5r.net Git - cc65/blob - libsrc/telestrat/orixhdr.s
Merge telemon24 and telemon30 into telestrat target.
[cc65] / libsrc / telestrat / orixhdr.s
1 ;
2 ; By Debrune Jérôme <jede@oric.org>
3
4 ;
5
6         ; The following symbol is used by the linker config. file
7         ; to force this module to be included into the output file.
8         .export __ORIXHDR__:abs = 1
9
10         ; These symbols, also, come from the configuration file.
11         .import __AUTORUN__, __PROGFLAG__
12         .import __BASHEAD_START__, __MAIN_LAST__
13
14
15 ; ------------------------------------------------------------------------
16 ; Orix header see http://orix.oric.org/doku.php?id=orix:header for specs
17
18 .segment        "ORIXHDR"
19
20     .byte   $01, $00          ; 
21
22     .byte   "ori"
23
24     .byte   $01 ; version
25     .byte   $00,%00000000 ; 6502 only
26     .byte   $00,$00 ; Extends
27     .byte   $00,$00 ; OS
28
29     .byte   $00                     ;  reserved
30     .byte   $00                     ; auto 
31
32     .word   __BASHEAD_START__       ; Address of start of file
33     .word   __MAIN_LAST__ - 1       ;  Address of end of file
34     .word   __BASHEAD_START__       ;  Address of start of file
35