]> git.sur5r.net Git - cc65/blob - libsrc/lynx/exehdr.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / lynx / exehdr.s
1 ;
2 ; Karri Kaksonen, 2011
3 ;
4 ; This header contains data for emulators like Handy and Mednafen
5 ;
6         .import         __BLOCKSIZE__
7         .export         __EXEHDR__: absolute = 1
8
9
10 ; ------------------------------------------------------------------------
11 ; EXE header
12         .segment "EXEHDR"
13         .byte   'L','Y','N','X'                         ; magic
14         .word   __BLOCKSIZE__                           ; bank 0 page size
15         .word   __BLOCKSIZE__                           ; bank 1 page size
16         .word   1                                       ; version number
17         .asciiz "Cart name                      "       ; 32 bytes cart name
18         .asciiz "Manufacturer   "                       ; 16 bytes manufacturer
19         .byte   0                                       ; rotation 1=left
20                                                         ; rotation 2=right
21         .byte   0,0,0,0,0                               ; spare
22