ÝfSystem FontÝ
;structure COKE format:         ;v1.1
coke_head1  equ 0               ;COKE
coke_head2  equ coke_head1+4    ; for
coke_head3  equ coke_head2+4    ;mat.
coke_larg   equ coke_head3+4    ;W weight in pixel
coke_haut   equ coke_larg+2     ;W height in pixel
coke_offst  equ coke_haut+2     ;W offset data (from beginning)
coke_versin equ coke_offst+2    ;W Version $0110 ==> 1.10
coke_nplans equ coke_versin+2   ;W number of planes (voir REZ)
coke_ncoul  equ coke_nplans+2   ;W nbr used colors
                                ;   0 = max !
coke_nccom  equ coke_ncoul+2    ;W nbr comment'chars (Y)
coke_data   equ coke_nccom+2    
;
;Attention: the image must be started from a even offset from the beginning of the start of the file !
;           use nccom++ to force it even address !
;
;data: if true color:        Y: comment
;                               image
;if il y a une palette:     .W: nbr colors (X)
;                          3*X: palette (3*256=768 octets)
;                          x/8: masque de la palette (256/8=32 octets)
;                               bit true: palette entry is used
;                               Y: comment
;                               image
Ý0Coke formatÝ