My header:
Code:
Is there any problem with that header?
Code:
.org $A60B
BinaryStart:
.db $EF,$11 ;OpenLib( 2 2
.db "D",$BB,$BF,$BB,$BF,$BB,$C2,$BB,$C3,"CSE",$11,$3F ; 14 16 (tokenized "DoorsCSE"
.db $EF,$12,$3F ;ExecLib 3 19
.db $D5,$3F ;Return 2 21
.db $ef,$68,$3F ; 3 24 bytes total
HeaderStart:
.dw ASMStart-HeaderStart ;offset to code
; Header sections start here
;Description Section:
.dw DescriptionEnd-DescriptionStart
.db 0
DescriptionStart:
.db "Eat the flies, avoid the spiders!",0
DescriptionEnd:
;Icon Section:
.dw IconEnd-IconStart
.db 1
IconStart:
.dw 2
IconPalette:
.db $7D, $A4, $95, $A4, $7D, $06, $6D, $02, $7D, $04, $7D, $A2, $4A, $A3, $00, $00
.db $6D, $04, $7D, $02, $95, $A6, $A6, $49, $F8, $00, $A5, $14, $FF, $FF, $7D, $A6
.db 2
.db 16
IconData:
.db $01, $23, $43, $15, $00, $12, $34, $61, $41, $66, $66, $66, $44, $10, $26, $76
.db $86, $77, $77, $77, $68, $05, $86, $76, $46, $76, $66, $67, $64, $59, $56, $76
.db $06, $76, $A4, $67, $66, $66, $66, $76, $46, $76, $44, $67, $77, $77, $77, $76
.db $96, $76, $4A, $26, $66, $66, $66, $62, $16, $76, $31, $50, $14, $31, $0B, $48
.db $16, $76, $40, $94, $01, $23, $43, $15, $06, $76, $00, $48, $41, $02, $44, $09
.db $56, $76, $00, $44, $8C, $7C, $40, $04, $67, $77, $64, $40, $DE, $7E, $D0, $04
.db $6D, $7D, $64, $24, $DE, $7E, $D4, $44, $67, $77, $62, $A9, $DE, $7E, $D4, $42
.db $36, $66, $48, $44, $9D, $AD, $4A, $2A, $25, $11, $1F, $44, $43, $10, $B4, $84
IconEnd:
;Author Section:
.dw AuthorEnd-AuthorStart
.db 2
AuthorStart:
.db "~AssemblyBandit~",0
AuthorEnd:
;Library Section:
.dw LibraryEnd-LibraryStart
.db 3
LibraryStart:
.db "DoorsCSE",8,0 ;Lib name, min major version, min minor version
LibraryEnd:
;End:
.dw 0 ;End of header field: 0 bytes of data
.db $ff ;End of header field: type 255
ASMStart:
.org $A60B
jp ProgStart
Is there any problem with that header?