PDA

View Full Version : Micro Code Studio - Warning message



flotulopex
- 17th November 2006, 17:35
Hello,

When I compile one of my programs made with Micro Code Studio v2.3.0.0, I get this warning message:

"Warn FAIRTI~3.ASM 685 : [102] code crosses boundary @ 800h".

I count actually 2186 used words and my 16F88 allows almost double.

What is the meaning of this warning message?

HenrikOlsson
- 17th November 2006, 18:22
Hi,
The memory in the PIC is divided into one or pages. The message is just a warning that your code has crossed from one page to the next. If you are writing the program in assembler you have to take care of this page switching but if you're using PBP it handles that for you so you don't have to anything. Except, if you're using the Branch command. Then you may need to change that to BranchL.

/Henrik Olsson.

sayzer
- 17th November 2006, 18:32
flotulopex,


Check this: http://www.picbasic.co.uk/forum/showthread.php?t=555


------------------------

flotulopex
- 17th November 2006, 19:59
Thank you.

I didnt' search correctly through the forum... sorry.

mister_e
- 17th November 2006, 21:17
http://www.picbasic.co.uk/forum/showpost.php?p=102&postcount=1