The following lines should be corrected to avoid problems:
IMAGE_ARCHIVE_START equ "!\n"
IMAGE_ARCHIVE_END equ "`\n"
IMAGE_ARCHIVE_PAD equ "\n"
IMAGE_ARCHIVE_LINKER_MEMBER equ "/ "
IMAGE_ARCHIVE_LONGNAMES_MEMBER equ "// "
To:
IMAGE_ARCHIVE_START equ <"!", 10, 0>
IMAGE_ARCHIVE_END equ <"`", 10, 0>
IMAGE_ARCHIVE_PAD equ <10, 0>
IMAGE_ARCHIVE_LINKER_MEMBER equ <"/ ", 0>
IMAGE_ARCHIVE_LONGNAMES_MEMBER equ <"; ", 0>
Check the last line, as I think my corrections is probably wrong (!!!!!), maybe it is just:
IMAGE_ARCHIVE_LONGNAMES_MEMBER equ <"// ", 0>
For the two last lines, there were supposed to be some spaces after the / but the board seems to have eaten them! Oh well...
Thanks, they were corrected now.