From: Matthias T. <mt...@we...> - 2012-10-03 13:54:22
|
Enoch, > Pass 2... > ../../core/words/brackettick.asm(6) : Warning : A .DB segment with an > odd number of bytes is detected. A zero byte is added. > ../../core/words/tick.asm(6) : Warning : A .DB segment with an odd > number of bytes is detected. A zero byte is added. > done Strange. The zero padding bytes are definitly there. .dw $ff01 .db "'",0 and .dw $0003 .db "[']",0 Maybe the mixture of " and ' confuses avra. Could you check whether the generated code is ok? (lst file) Matthias |