MPLAB errors

Thread Starter

frenki05

Joined Feb 27, 2009
3
Please,
if somebody can make an HEX file with The appropriate assembly programming liste from
this www : http://www.sapteka.net/PortableRepeater.htm.
I try many time but the MPLAB IDE v7.60 find 2 error:
Message[302] D:\GLAVNI MOJ REPETITOR.ASM 9 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message[302] D:\GLAVNI MOJ REPETITOR.ASM 11 : Register in operand not in bank 0. Ensure that bank bits are correct.
 

kbupnorth

Joined Sep 8, 2008
4
Your HEX file should download just fine.
The 302 warning is just a reminder to make sure the correct register is selected.

To get rid of the warning, add the following below the INCLUDE "P16F84A" statement:

ERRORLEVEL -302
 
Top