From: Matthias T. <mt...@we...> - 2012-05-30 19:08:36
|
Hi Jan, > Hello, I wont to include 2 asm files.It is for me the first time to > do this.Can someone help me with a sugestion where to place these so > the compiler is taken them. The files are: 2r_from.asm2to_r.asm > Thanks in advance for anny help. edit your dict_appl.inc file and add the lines .include "words/2to_r.asm" .include "words/2r_from.asm" at the end. Make sure, to add an empty newline, the assembler needs it. After that re-assemble and re-flash and the two words should come up in the word list. The only error message should be an "duplicate label" (or alike). In that case you've already the words included from elsewhere (the hierarchy of the included files is pretty complex...). Matthias |