I got 0 errors and 3 warnings after compilation, the three warnings were of the same kind : Uncalled Segment ,Ignored for Overlay Process error. Is that something really serious or can i just ignore it?
Is that something really serious or can i just ignore it? well, what does it say? Uncalled Segment ,Ignored for Overlay Process error If that is all you have, you can ignore it. as your program grows, it may, in the end, create a data overflow error and then you are hosed. so, YES you can ignore it WHILE DEVELOPING, but will, eventually, have to get rid of it. Erik
a simple way I often have routined in a program under development that are not called. This can often lead to an "embarrasment" (data overflow) which will not exist in the final product I handle this by bit Ralph = 0; if (ralph) { unused_function(): } Erik